注意: 必须给它宽度,才能使用margin:0 auto;属性,才能使用float属性;
<html>
<head>
<title>css样式练习</title>
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html;charset=urf-8">
<meta http-equiv="keywords" content="111,222">
<link rel="stylesheet" type="text/css" href="out.css">
<!--嵌入式-->
<!--普通选择符--><!--类选择符--><!--id选择符-->
<style type="text/css">
#div1 {
border:1px solid red;
width:98px;
height:98px;
margin:0 auto;
}
</style>
</head>
<body>
<div id="div1" >
世界你好
</div>
</body>
</html>
<html>
<head>
<title>css样式练习</title>
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html;charset=urf-8">
<meta http-equiv="keywords" content="111,222">
<link rel="stylesheet" type="text/css" href="out.css">
<!--嵌入式-->
<!--普通选择符--><!--类选择符--><!--id选择符-->
<style type="text/css">
#div1 {
border:1px solid red;
width:98px;
height:98px;
margin:0 auto;
}
</style>
</head>
<body>
<div id="div1" >
世界你好
</div>
</body>
</html>