博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HTML第5章
阅读量:4942 次
发布时间:2019-06-11

本文共 1218 字,大约阅读时间需要 4 分钟。

一.span标签:能让某几个文字或者某个词语凸显出来

<p>
今天是11月份的<span>第一天</span>,地铁卡不打折了
</p>

二.字体风格

font-family:字体类型
font-size:字体大小
font-style:字体风格
font-weight:字体粗细
font: 风格 粗细 大小 类型;
三.文本样式

color 设置文本颜色 rgb(0,0,255),rgba(0,0,255,0.5)

text-align 设置元素水平对齐方式
text-indent 设置首行文本的缩进
line-height 设置文本的行高
text-decoration 设置文本的装饰
vertical-align 设置文本垂直方式
text-shadow 设置文字阴影 text-shadow: 颜色 x轴偏移位置 y轴偏移位置 模糊半径
四.超链接伪类
单击访问前
.class01:link{
color: green;
text-decoration: none;
}
单击访问后
.class02:visited{
color: pink;
text-decoration: none;
}
鼠标悬浮
.class03:hover{
color: aqua;
text-decoration: none;
}
单击未释放
.class04:active{
color: red;
text-decoration: none;
}
五.列表样式
list-style-type 列表项前图标
list-style-image 列表项前图片
list-style-image:url(../image/QQ图片20181101095555.png);

六.背景样式

background-color 设置背景颜色
background-image 设置背景图像
background-repeat 设置图像是否平铺
background-position 设置背景图像位置
background: 背景颜色 背景图像 x轴偏移位置 y轴偏移位置 平铺;
七.渐变
IE浏览器是Trident内核,加前缀:-ms-
Chrome浏览器是Webkit内核,加前缀:-webkit-
Safari浏览器是Webkit内核,加前缀:-webkit-
Opera浏览器是Blink内核,加前缀:-o-
Firefox浏览器是Mozilla内核,加前缀:-moz-
background: -webkit-gradient(linear,left bottom,right top,from(red),to(blue));
background: linear-gradient(to bottom left,red,black);

转载于:https://www.cnblogs.com/loose/p/9895518.html

你可能感兴趣的文章
mysql 密码忘记
查看>>
VB程序逆向常用的函数
查看>>
转:Delphi中destroy, free, freeAndNil, release用法和区别
查看>>
Yii2框架之旅(六)
查看>>
springmvc.xml或spring.xml 能运行配置文件总是出现错误
查看>>
Team Foundation Server
查看>>
javascript之BOM对象总结
查看>>
mySQL 插入,更新和删除数据
查看>>
redis 和 memcached的区别
查看>>
sendEmail
查看>>
NYOJ 46 最少乘法次数
查看>>
linux locate
查看>>
NoSQL Redis的学习笔记
查看>>
[LeetCode] Interleaving String 交织相错的字符串
查看>>
[LeetCode] Two Sum IV - Input is a BST 两数之和之四 - 输入是二叉搜索树
查看>>
EBS MOAC深入研究(转)
查看>>
c#枚举位运算操作
查看>>
android 中解析json格式数据
查看>>
移动端报表JS开发演示样例
查看>>
QQ左侧滑动显示
查看>>