我正在学习 CSS/XHTML。我有一个外部定义的样式表,并试图在我的 HTML 文件中使用它。
.css 文件的内容很简单:
borderstyle {
font-family:"Times New Roman", Times, serif;
font-size: 20%;
font-style:normal;
border: blue dotted medium;
display: inline;
}
这是我试图在我的 HTML 中使用它的地方:
<body>
<link rel="stylesheet" type="text/css" href="myCSS.css" />
<center>
<div class ="borderStyle">
Welcome
</div>
</center>
</body>
欢迎文本居中显示,但格式正常,没有边框。
更新:这是一个 XHTML 文件,我忘了提。