<div id="content" style ="background-color:#ffffff;" style="width:600px;">
有了它,它会生成一个 div 并使背景变为白色。但是我沿着页面的整个宽度伸展。我怎样才能让它只延伸到我放入的尺寸?
你有style
两次属性。那是无效的。只放一次。
<div id="content" style="background-color:#ffffff; width:600px;">
更好的是,使用 CSS
<div id="content">
#content {
background-color: #fff;
width: 600px;
}
您有两个style
导致错误的属性。用这个:
<div id="content" style="background-color:#ffffff; width:600px;">
您不能多次使用相同的属性..
CSS 规则可以通过;
<div id="content" style ="background-color:#ffffff;width:600px;">