布局入门

2018-03-29  本文已影响0人  能吃饭也能吃苦1236

CSS高度的使用原则

background: linear-gradient(to right, #ff9000 0, #ff5000 100%);
margin: 0 10px; /* 上下距离为0,左右距离为10 */
padding: 3px 0; /* 上下3像素,左右为0 */
line-height: 30px;/* 行高为30 */

绝对定位

transform: scale(0.7); /* 缩放0.7倍 */

图片的使用原则

background-color: #eee; /* 直接设置背景颜色 */
background: url(images/01.png); /* 设置背景图片 url(图片地址) */
background: no-repeat; /* 取消背景平铺 */
background: repeat-x; /* 设置x方向平铺 */
background: repeat-y; /* 设置y向平铺 */
background-position: 0 0; /* 设置向哪儿对齐,可以是数字、left、right、center、top、bottom */
background-position: 2px 10px; /* 精确设置位置,可以设置负数 */

background: #eee url(images/01.png) no-repeat 2px 10px; /* 简写 */
background-size: 16px 16px; /* 设置图标大小 */
padding-left: 18px;

在CSS文件中编写样式

<link rel="stylesheet" href="./style.css">
上一篇下一篇

猜你喜欢

热点阅读