<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>常見元素佈局</title>
<style type="text/css">
/* 1、水平居中佈局 */
/* 1.單個元素水平居中 寬度不固定 缺點:須要涉及到父類的樣式*/ .content { text-align: center;
} .box { display: inline-block; color: #fff; background: #0000FF;
}
</style>
</head>
<body>
<div class="content">
<div class="box"> 寬度不固定 </div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>常見元素佈局</title>
<style type="text/css">
/* 1、水平居中佈局 */
/* 2.單個元素水平居中 寬度不固定 缺點:設置爲表格元素,內部元素的佈局有可能受到影響*/ .box { display: table; margin: 0 auto; background: #ff9933; color: #fff; /* background和color測試更好的觀看效果 */
}
</style>
</head>
<body>
<div class="content">
<div class="box"> 寬度不固定 </div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>常見元素佈局</title>
<style type="text/css">
/* 1、水平居中佈局 */
/* 3.單個元素水平居中 寬度不固定 缺點:transform,兼容性較差*/ .content { position: relative;
} .box { position: absolute; left: 50%; transform: translateX(-50%); background: #ff9933; color: #fff; /* background和color測試更好的觀看效果 */
}
</style>
</head>
<body>
<div class="content">
<div class="box"> 寬度不固定 </div>
</div>
</body>
</html>
效果:css