<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" > |
<html> |
<head> |
<title>演示css的选择器</title> |
<!-- |
<style type= "text/css" > |
|
input{ |
/* |
border: none;取消标签的边框 |
*/ |
border : none ; |
/* |
设置input标签的下边框样式 |
*/ |
border-bottom-color : blue ; |
border-bottom-style : solid ; |
border-bottom-width : 1px ; |
} |
</style> |
--> |
<style type= "text/css" > |
/* |
演示类名选择器 |
*/ |
.one{ |
border : none ; |
border-bottom : blue solid 1px ; |
} |
.two{ |
border : none ; |
border-top : yellow solid 2px ; |
} |
|
|
</style> |
</head> |
|
<body> |
|
用户名:<input class= "one" type= "text" /> <br/> |
用户名:<input class= "one" type= "text" /><br/> |
用户名:<input class= "two" type= "text" /><br/> |
用户名:<input class= "two" type= "text" /><br/> |
|
<div class= "one" > |
div数据 |
</div> |
<div class= "two" > |
div数据 |
</div> |
|
</body> |
</html> |
by: 发表于:2017-11-30 10:54:05 顶(0) | 踩(0) 回复
??
回复评论