Search This Blog

Showing posts with label css. Show all posts
Showing posts with label css. Show all posts

Tuesday, February 22, 2011

How to Exclude a tag from css class

form#frmBilling  label:not(.formRadio){
 width: 140px;
}


The above width will be applied to all the labels in the form except
labels with the class formRadio.

Monday, November 15, 2010

How to make word wrap in HTML table

td{
max-width: 200px; 
word-wrap: break-word;
}