/ Published in: HTML

A basic XHTML 1.0 Transitional template with CSS cross-browser fixes already in place.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <style type="text/css"> /* Cross-Browser Fixes */ * { margin: 0px; padding: 0px; } br, div, p { clear: both; } img { border-style: none; } </style> </head> <body> <div id="container"> </div> </body> </html>
Comments
