CSS文本样式
align
中文为对齐,文本居中使用
text-align: center;
decoration
中文为样式,去掉a
标签下划线使用
text-decoration: none;
uppercase
中文为大写,把文本转化为大写使用
text-transform: uppercase
capitalized
中文为首字母大写,把文本转化为首字母大写使用
text-transform: capitalized
indent
中文为缩进,把文本缩进使用
text-indent: 20px
CSS字体样式
normal
中文为普通,使用普通字体用
font-style: normal;
italic
中文为斜体,使用斜体字体用
font-style: italic;
oblique
中文为倾斜,使用倾斜字体用
font-style: oblique;
bold
中文为粗体,使用粗色字体用
font-weight: bold;
CSS布局
horizontal
中文为水平的,使用水平溢出
overflow-x: scroll;
vertical
中文为垂直的,使用垂直溢出
overflow-y: scroll;
transition
中文名为过渡,页面变化过渡使用
transition: width 2, height 2s;
animation
中文名为动画,页面动画延迟使用
animation-delay: 2s;
网友评论