css基础 tt(2015.10.23)
2019-02-26 本文已影响0人
Up鹏鹏
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
1、盒模型
2、定位
3、浮动
4、文本
盒模型
width / height
margin / padding
box-sizing : content-box / border-box
display
定位 (文档流)
position : static / inhreit / relative / absolute / fixed
z-index
top / right / bottom / left
浮动 (文档流)
float: left / right
clear: none / left / right / both / inherit
文本
color
background
font
line-height
text-decoration
text-indent
text-shadow
opacity
visibility
list-style
outline
box-shadow
border-radius
overflow
overflow-x
overflow-y
min-width
min-height
max-width
max-height
content
vertical-align
text-align
border-collapse:collapse
border-spacing:none
white-space
word-spacing
word-break
word-wrap
</body>
</html>