`
rayln
  • 浏览: 434037 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

CSS3的before, after和label的for用法

 
阅读更多
使用before和after可以用content, 结合before, after可做写入内容和样式

看例子:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<style type="text/css">
	.before{
		width: 100px;
		height:100px;
		border: 1px solid blue;
	}
	.before::before{
		content:'bef';
		width: 20px;
		height: 20px;
		background-color:red;
	}
	.before::after{
		content:'aft';
		width: 20px;
		height: 20px;
		background-color:blue;
	}
</style>
</head>
<body>
	<input id='input1' type='radio'/>
	<div class="before"></div>
	<label for='input1'>点击我</label>
	
</body>
</html>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics