为什么边框宽度未应用css不起作用?
以下是我的代码:
CSS:
{
border-style:solid;
border-width:10px;
}
答案 0 :(得分:1)
尝试在头部之间嵌入适当的<style></style>
属性。
<!DOCTYPE html>
<html>
<head>
<style>
p.one {
border-style: solid;
border-width: 5px;
}
</style>
</head>
<body>
<p class="one">Some text.</p>
<p><b>Note:</b> The "border-width" property does not work if it is used alone. Use the "border-style" property to set the borders first.</p>
</body>
</html>
&#13;