转载出自:http://www.w3cschool.cn/html/html-css-style.html
style
元素允许您在HTML文档中内联定义CSS样式。
style
元素具有局部属性:type,media,scoped
。
HTML5中添加了scoped
属性。
<!DOCTYPE html>
<html>
<head>
<title></title>
<!--屏幕宽度小于500px 应用此样式-->
<style media="screen AND (max-width:500px)" type="text/css">
a {
background-color: grey;
color: white;
padding: 0.5em;
}
</style>
<!--屏幕宽度大于500px 应用此样式-->
<style media="screen AND (min-width:500px)">
a {
background-color: red;
color: white;
padding: 0.5em;
}
</style>
</head>
<body>
<p>This is a test.</p>
<a href="http://www.w3cschool.cn">Visit www.w3cschool.cn</a>
</body>
</html>