Very depressing question, look at the code that I originally wrote:
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <ptml xmlns=" http://www.w3.org/1999/xhtml "> <pead> <meta http-equiv=" Content-type "Content=" Tex t/html; Charset=utf-8 "/> <title> Untitled document </title> <style type=" Text/css "> body{width:990px;} #head {height:95px;width:990px;} </style> </pead> <body> <div id= "Head" > </div> </body> </ptml>
[Ctrl + A All SELECT Note: If the need to introduce external JS need to refresh to perform]
Actually appear the horizontal scroll bar, the problem is that I defined the width of only 950px Ah! Finally, with the help of netizens, found the reason:
1 can directly change the body's CSS to:
body{width:990px; margin:0; padding:0;}
2 can add:
* {margin:0;padding:0;} To run after adding:
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> <ptml xmlns=" http://www.w3.org/1999/xhtml "> <pead> <meta http-equiv=" Content-type "Content=" Tex t/html; Charset=utf-8 "/> <title> Untitled document </title> <style type=" Text/css "> * {margin:0;padding:0;} body{width:990px;} #head {height:95px;width:990px;} </style> </pead> <body> <div id= "Head" > </div> </body> </ptml> </te xtarea>
[ CTRL + A All SELECT Note: If you need to introduce external JS need to refresh to perform]