We Recommend

Beginning XML Beginning XML
The perfect resource for beginning XML programmers, this guidebook shows you what XML is, how to use it, and what technologies surround it. The authors build on the strengths of previous editions while covering the latest changes in the XML landscape such as XQuery, RSS and Atom, and Ajax.


Posted By

soxiam on 08/24/06


Tagged

css textmate global


Versions (?)


css overriding controls


Published in: Other 


  1. /* OVERRIDING CONTROLS #################### */
  2. .rightalign {text-align: right !important;}
  3. .leftalign {text-align: left !important;}
  4. .centeralign {text-align: center !important;}
  5. .nomargin {margin: 0 !important;}
  6. .nopadding {margin: 0 !important;}
  7. .noborder {border: none !important;}
  8. .largertext {font-size: 200% !important;}
  9. .smallertext {font-size: 90% !important;}

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: soxiam on August 24, 2006

I like to place something like this at the bottom of my global css stylesheet so I always "have a way out": ability to override default properties without writing new classes for it.

You need to login to post a comment.