我做这个代码
h6 {
font-size: 30px;
padding: 1;
margin: 0;
position: fixed;
text-align: left;
border: 1px solid black;
}
但由于某种原因,我的代码没有响应。这是为什么?
答案 0 :(得分:0)
在样式标记内写下样式。如果你使用内部风格
或者如果您使用的是外部样式表
<link rel="stylesheet" href="path-to-your-style-sheet" type="text/css" />
<html>
<body>
<style>
h6 {
font-size: 30px;
padding: 100px;
margin: 0;
position: fixed;
text-align: left;
border: 1px solid black;
text-transform: capitalize;
}
</style>
<h6>answer</h6>
</body>
</html>
答案 1 :(得分:0)
它对我来说很好。请分享您的HTML代码以及您获得的确切错误。
h6 {
font-size: 30px;
padding: 100px;
margin: 0;
position: fixed;
text-align: left;
border: 1px solid black;
text-transform: capitalize;
}
&#13;
<h6>answer</h6>
&#13;