读书

CSS英语样式

2022-11-05  本文已影响0人  技术的游戏

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;
上一篇 下一篇

猜你喜欢

热点阅读