-
CSS 页面元素
1. 文字基本样式
- font-family
- font-size
- font-weight
- font-style
- color
2. 段落样式
- text-indent:2em;(缩进)
- line-height:1.5;(行高)
3. 特殊效果
- :first-letter;
- :first-line;
- overflow:hidden;
- visibility:hidden;
- display:none;
4. 文字链接
- :link;
- :visited;
- :hover;
- :active;
4. 背景
- background-color:red;
- background-image:url(images/logo.jpg);
- background-repeat:no-repeat;(repeat-x,repeat-y)
- background-position:right bottom;
(top,center,bottom,left,right)
(background-postion:50% 100px;//水平50%,垂直100px)
(可使用负值)
- background:#FFFFFF url(images/logo.jpg) no-repeat center center;
- CSS Sprite(雪碧图);
5. 列表
- ul;
- ol;
- dl;
- list-style-image;
- list-style-position:outside(inside);
- list-style-type;(修饰符的类型,空心圆,实心方块什么的。)
- display:block;(将 a 标签转化为块元素)
-
相关阅读:
浏览器渲染机制
isEmpty 和 isBlank 的用法区别
Mybatis-plus
Java8的JVM内存结构
【面试题】关于线程交替的面试题
java中的final的作用
线程池
六种实现单例模式的方法
SQL优化常用方法
HTML学习笔记
-
原文地址:https://www.cnblogs.com/huoteng/p/4971943.html
Copyright © 2020-2023
润新知