1. 程式人生 > >23css中的水平居中顯示標簽用法

23css中的水平居中顯示標簽用法

nbsp utf-8 wid har oct txt 標題 text bsp

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文檔</title>
<style type="text/css">
div{
    border:1px solid red;
    margin:20px;
    }
.txtcenter{text-align:center;}
</style>
</head>

<body>
<div class="txtcenter">居中顯示</div>
<div class="txtcenter"><img src="../Desktop/11.jpg" width="101" height="101" /></div>

</body>
</html>

23css中的水平居中顯示標簽用法