内联样式是使用style属性添加到元素的样式。
<!DOCTYPE HTML>
<html>
<body>
<a href="https://www..cn"
style="background-color:grey; color:white">
Visit the website
</a>
<p>This is a test.</p>
<a href="https://www.w3.org" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" >Visit the W3C website</a>
</body>
</html>
您可以使用样式元素定义嵌入样式。
此示例中的选择器是a,它指示浏览器将样式应用于文档中的每个元素。
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
a {
background-color:grey;
color:white
}
</style>
</head>
<body>
<a href="https://www..cn">Visit the website</a>
<p>This is a test.</p>
<a href="https://www.w3.org" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" >Visit the W3C website</a>
</body>
</html>
您可以在单个样式元素中定义多个样式。
以下代码显示了具有两种样式的样式元素。
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
a {
background-color:grey;
color:white
}
span {
border: thin black solid;
padding: 10px;
}
</style>
</head>
<body>
<a href="https://www..cn">Visit the website</a>
<p>I like <span>apples</span> and oranges.</p>
<a href="https://www.w3.org" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" >Visit the W3C website</a>
</body>
</html>
您可以创建具有.css文件扩展名的单独的样式表文件,并在每个HTML页面中定义相同的样式集。
以下代码显示了文件styles.css的内容。
a { background-color:grey; color:white } span { border: thin black solid; padding: 10px; }
您不需要在样式表中使用样式元素。您只需使用选择器,然后是您需要的每个样式的声明。
然后,您可以使用link元素将样式带入您的文档。<!DOCTYPE HTML> <html> <head> <link rel="stylesheet" type="text/css" href="styles.css"></link> </head> <body> <a href="https://www..cn">Visit the website</a> <p>I like <span>apples</span> and oranges.</p> <a href="https://www.w3.org" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" >Visit the W3C website</a> </body> </html>
您可以链接到所需的任何样式表。
与样式元素一样,如果使用相同的选择器定义两个样式,则导入样式表的顺序很重要。
最后加载的那个将是应用的那个。
您可以使用 @import
语句将样式从一个样式表导入到另一个样式表。
以下代码链接到包含导入的样式表
@import "styles.css"; span { border: medium black dashed; padding: 10px; }
您可以根据需要导入任意数量的样式表,每个样式表使用一个 @import
语句。
@import
语句必须出现在样式表的顶部,在定义任何新样式之前。
以下代码链接到包含导入的样式表:
<!DOCTYPE HTML> <html> <head> <link rel="stylesheet" type="text/css" href="combined.css"/> </head> <body> <a href="https://www..cn">Visit the website</a> <p>I like <span>apples</span> and oranges.</p> <a href="https://www.w3.org" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" rel="external nofollow" target="_blank" >Visit the W3C website</a> </body> </html>
CSS 水平对齐 (Horizontal Align) 关于 CSS 中元素的水平对齐 (HorizontalAlign),你可以使用多种属性来进行设置。 在CSS中,有...
CSS教程导读 通过使用 CSS 来我们可以大大提升网页开发的工作效率!在我们的 CSS 教程中,您会学到如何使用 CSS 同时控制多重网...
embed 标签用来定义在页面中嵌入的内容,比如插件。比如,在下面的实例中我们嵌入了一个 flash 动画:实例被嵌入的 flash 动画片...
img 标签用于展示 HTML 页面中的图像,使得页面能够“图文并茂”。您可以在本站的编程实战中学习如何给页面添加图片。实例如何插...
samp 标签用于标识计算机程序输出,使用该标签定义的文本会以特殊的样式显示,通常使用浏览器默认的monotype 字体,请参考下述的...