<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
img{
width: 100px;
}
#box{
width: 800px;
background-color: salmon;
height: 500px;
font-size: 30px;
color: yellow;
/*文本的对齐方式 默认居左
只适用于 文本和行元素
*/
/*text-align: center;*/
margin: 0 auto;
}
p{
/*块元素居中 单独修改块元素属性
margin 间距*/
margin: 0 auto;
width: 500px;
background-color: skyblue;
}
em{
background-color: sandybrown;
}
</style>
</head>
<body>
<div id="box">
哈哈
<img src="img/凤九.jpg"/>
<p>这是段落标签呀</p>
<p>啥都会</p>
<em>全场大甩卖呀</em>
<strong>我我哦</strong>
</div>
</body>
</html>
网友评论