-
Recent Posts
Recent Comments
- moncler jacken on Simple Animated Content Slider with jQuery
- Ahmad on (Android) PhoneGap Cordova 1.5 menubutton and searchbutton with jQuery Mobile
- Mike Panter on (Android) PhoneGap Cordova 1.5 menubutton and searchbutton with jQuery Mobile
- Jan on (Android) PhoneGap Cordova 1.5 menubutton and searchbutton with jQuery Mobile
- Danny on (Android) DroidGap Cordova 1.5 – Error with “Getting Started”
Archives
Categories
Meta
Monthly Archives: January 2012
Affecting a series of (recursive) elements with css
Many sites use some form of rating system for content – here is an example of how to create series of elements for a ranking meter using only html and css. HTML <div id=”stars”> <div class=”star”> <div class=”star”> <div class=”star”> … Continue reading
CSS Double Border
Today I came across an interesting prospect – How to emulate a double border using only CSS. This can be achieved with the :before and :after pseudo selectors. xhtml <div id=”myDiv”>Some Text Here</div> CSS #myDiv, #myDiv:after { display:block; background:#00f; width:100px; } #myDiv:after … Continue reading