css margin-right右邊距,又稱CSS右外邊距間隔屬性
對象與對象之間間距間隔CSS屬性,兩個並排近鄰對象對前者對象設置margin-right樣式即可實現兩個盒子間隔距離。
margin-right:20px
margin-right:-10px
右邊距後直接跟具體數值,可以為正可以為負,平時常規使用正數值為多。
span{margin-right:30px}
對span標簽盒子設置右邊距30px
div css實例代碼:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>margin-right實例 ThinkCSS</title>
<style>
.div1,.div2{float:left; width:200px; height:80px;}
.div1{border:1px solid #F00; margin-right:10px}
.div2{border:2px solid #00F}
</style>
</head>
<body>
<div class="div1"></div>
<div class="div2"></div>
</body>
</html>
截圖:
margin-right右(外)邊距設置實例
通過以上案例可以看到那個DIV盒子之間間距,可以使用margin-right或margin-left設置之間間距間隔距離。