css_sduty/14_CSS背景相关的属性/01_背景相关的属性.html

35 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>01_背景相关的属性</title>
<style>
body {
background-color: gray;
}
div {
width: 400px;
height: 400px;
border: 2px rgb(0, 0, 0) solid;
font-size: 40px;
/* 背景颜色 默认值时透明 transparent */
background-color: skyblue;
/* 背景图片 */
background-image: url(http://cdn.zyjblogs.cn/logo.jpg);
/* 设置背景图片的重复方式 no-repeat 不重复*/
background-repeat: no-repeat;
/* 控制背景图片的位置第一种:关键词 background-position: 水平 垂直 */
/* background-position: center; */
/* 控制背景图片的位置第二种:用具体的像素值 */
/* background-position: 10px 20px; */
/* 复合属性 */
background: skyblue url(http://cdn.zyjblogs.cn/logo.jpg) no-repeat center;
}
</style>
</head>
<body>
<div>你好啊!</div>
</body>
</html>