码迷,mamicode.com
首页 > Web开发 > 详细

CSS基础-属性选择器

时间:2018-04-01 14:26:04      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:html   ext   pos   htm   bubuko   charset   har   info   alt   

一、属性选择器:

   1、对带有指定属性的HTML元素设置样式

   2、属性和值选择器

   <!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
[title]
{
color:blue;
}
/*属性和值选择器*/
[title=te]{
color: red;
}

</style>
</head>
<body>

<p title="t">属性选择器</p>
<p title="te">属性和值选择器</p>
</body>
</html>

 

 技术分享图片

 

CSS基础-属性选择器

标签:html   ext   pos   htm   bubuko   charset   har   info   alt   

原文地址:https://www.cnblogs.com/Lehh/p/8686317.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!