HTML5系列代码:设置边框的边距

  • marginheight 属性规定框架内容与框架的上方和下方之间的高度,以像素计。
 	<html >
 	<head>
 	<title>设置边框的边距</title>
 	</head>
 	<frameset rows="30%,30%,*" >
 	<frame src="red.html" marginwidth=50px >  
 	<frame src="blue.html" marginwidth=100px >     
 	<frameset cols="40%,*" >
 	<frame  src="red.html" marginheight=50px>
 	<frame src="复件white.html" marginwidth=100px marginheight=50px>
 	</frameset>
 	</html>

<style>
body {color:black;
font:2em, arial;
background-color:red;
}
</style>
<body>
red
</body>



<style>
body {color:black;
font:2em, arial;
background-color:white;
}
</style>
<body>
white
</body>


你可能感兴趣的:(HTML5)