Category Archives: CSS Core

CSS only superscript

The commonly used method to format superscript in HTML is by doing in the following way: <sup>hullo world</sup> To achieve the same effect using CSS, you can set the vertical-align Property: <style> span { vertical-align:super; } </style> <p>hullo world<span>TM</span></p>

Posted in CSS Core | Tagged | Leave a comment

CSS – Various List Techniques

When styling a list, there are many things can be changed using CSS, like: Creating Inline Lists, Place Dividers Between List Items, Moving the Marker Inside the List etc. These techniques can greatly change the default list presentation.  below is … Continue reading

Posted in CSS Core | Tagged , , , , , , , , | Leave a comment

CSS – List Indentation

Different browsers use different methods to indent lists. Mozilla and Netscape 6+ browsers pad a list on the padding, while Internet Explorer and Opera indent a list through the margin of a list. To gain cross-browser effectiveness, you need to … Continue reading

Posted in CSS Core | Tagged , , , , , , , , | 1 Comment

CSS – List Styles

There are totally tweleve cross browser supported list styles. Below is the demo of the complete list. Enjoy! http://www.lab.highub.com/css/css-list.php

Posted in CSS Core | Tagged , , , , , , | Leave a comment