文本居中换行、边框设置
<style> div{ height: 100px; background-color: aquamarine; text-align: center;/*文本水平居中设置的语句*/ /*line-height: 100px;!*下一行要写就必须在下一行了*!*/ text-indent: 150px;/*首行缩进*/ } </style> </head> <body> <div>介绍文本属性</div>
.div1{ width: 200px; height: 200px; border: 5px solid red; } </style> </head> <body> <div class="div1"></div>