-
Search
Categories
-
Linux, PHP, LAMP, The Web in a blog- Android – how to develop directly on a phone
- Android drawable default icons – they are free to use
- Android how to read and write files
- Uncompress on the fly when copying a file from a remove location with scp
- Setting up an encrypted volume on an external hard drive on CentOS
- Linux bash – tar tricks
- Implement Selenium tests
- Using a downloaded package without IDE in Java
- CSS selectors optimisation
- Ubuntu Linux on Acer Aspire AO751h
Tag Cloud
alarm array backup begin button character commercial constants coppermine CSV DVD eclipse ecommerce email email server expect firefox font foreach formatting fstab ftp GMail gnome keyboard Lucene marketing memcached mount plugin profiling protect regexp scp Selenium SEO sftp split svn tar utf utf8 Vbulletin Virtual Server Web Dev Security
Category Archives: HTML / CSS
CSS selectors optimisation
From the last chapter of “Even faster websites”. CSS selectors are matched right to left (!). That means the rightmost selector should be as less broad as possible: you should avoid * and tags as rightmost selectors. The quickest selectors … Continue reading
Posted in HTML / CSS
Leave a comment
HTML + CSS menu
Horizontal with subnva http://phoenity.com/newtedge/horizontal_nav/#inline Horizontal http://www.wings-properties.co.uk
Posted in HTML / CSS
Leave a comment
PHP HTML – Display Data in CSV or HTML Table Format
csv_html_dispay
Javascript: Check / Uncheck All The Checkboxes Of a Certain Group
/* * It checks all the checkboxes of a certain group (that shares a name like this: checkboxes[]) * * @param the Javascript Element that contains all the checkboxes of a certain group * * Example of usage: * var … Continue reading
Posted in HTML / CSS, Javascript
Leave a comment
Fix IE6 Layout Bugs With Javascript
http://sourceforge.net/projects/ie7/ http://dean.edwards.name/IE7/
Posted in HTML / CSS, Javascript
Leave a comment
Identify a Font Face
http://www.myfonts.com/WhatTheFont/ http://www.identifont.com/ http://www.whatthefont.com
CSS: Make a Table Row Appear and Disappear (Cross Browsing)
To make it disappear (as usual): xxxx.style.display = “none”; To make it appear: xxxx.style.display = “”; The last trick is because, this: xxxx.style.display = “table-row”; wouldn’t work in IE6 and IE7
Posted in HTML / CSS, Javascript
Leave a comment
Bullet Collection for Unordered List
http://www.stylegala.com/features/bulletmadness/
Posted in HTML / CSS, Web Design, Web Site
Leave a comment
HTML: Readonly checkbox
<input onclick=”javascript: return false;” name=”my_name” type=”checkbox” value=”yes” />
Posted in HTML / CSS, Javascript
Leave a comment
