我遇到了这个,我不确定它为什么会发生......
以下面的 html 为例,它会按照 CSS 的指示显示部分的灰色区域。但是,当我<!Doctype html>
在第一行中包含它时,它就崩溃了。此外,下面的代码在 IE9 中根本不起作用。为什么?提前谢谢了。
<html>
<head>
<style type="text/css">
.sec_class{
width:50%;
height:15%;
border:1px black solid;
padding:0px;
position:relative;
background-color:grey;
}
</style>
</head>
<body>
<section class = 'sec_class'></section>
<section class = 'sec_class'></section>
<section class = 'sec_class'></section>
</body>
</html>