JavaScript Style Attributes Listed below are the tables of CSS properties for various HTML element style attributes. I have added a column indicating the javaScript name that the browser recognizes for these properties. I have only listed those that I know work, but the trend seems to be to use the same name when one [...]
Tag: CSS
April 24, 2012
March 14, 2011
How to remove dotted line from HTML link, check box and radio buttons
Please add the following CSS Styles in your default style sheet or add under style tag in head of the page. input[type="radio"], input[type="checkbox"]{ outline: none; } a{text-decoration: none; outline: 0; }
