css属性1
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css属性</title>
<style>
p{
color: #FF0000;
font-size: 30px;
text-align: center;
line-height: 200px;
/*
border 边框
*/
border: 1px solid red;
}
div{
border: 1px solid red;
/*
尺寸
*/
height: 200px;
width: 200px;
/*
背景
*/
background: url("img/logo.jpg") no-repeat center;
}
</style>
<p>传智播客</p>
<div>
黑马程序员
</div>