CSS链接

作者: convertible | 来源:发表于2018-01-23 14:51 被阅读0次

链接样式

四个链接状态:
a:link - 正常,未访问过的链接
a:visited - 用户已访问过的链接
a:hover - 当用户鼠标放在链接上时
a:active - 链接被点击的那一刻

当设置为若干链路状态的样式,也有一些顺序规则:
a:hover 必须跟在 a:link 和 a:visited后面
a:active 必须跟在 a:hover后面

display:设置行内框

CSS列表

CSS列表属性作用如下:
设置不同的列表项标记为有序列表
设置不同的列表项标记为无序列表
设置列表项标记为图像、
1.list-style-type属性指定列表项标记的类型是

2.列表项标记的图像
list-style-image: url('xxx.gif');

3.浏览器兼容性解决方案

ul
{
    list-style-type:none;
    padding:0px;
    margin:0px;
}
ul li
{
    background-image:url(sqpurple.gif);
    background-repeat:no-repeat;
    background-position:0px 5px; 
    padding-left:14px;
}

例子解释:
ul:
设置列表样式类型为没有删除列表项标记
设置填充和边距0px(浏览器兼容性)
ul中所有li:
设置图像的URL,并设置它只显示一次(无重复)
您需要的定位图像位置(左0px和上下5px)
用padding-left属性把文本置于列表中

4.简写属性

list-style: square url("sqpurple.gif");

可以按顺序设置如下属性:
list-style-type
list-style-position (有关说明,请参见下面的CSS属性表)
list-style-image
如果上述值丢失一个,其余仍在指定的顺序,就没关系。

| 属性 | 描述 |
list-style 简写属性。用于把所有用于列表的属性设置于一个声明中
list-style-image将图象设置为列表项标志。
list-style-position设置列表中列表项标志的位置。
list-style-type设置列表项标志的类型。

列表属性

ul.a {list-style-type:circle;}
ul.b {list-style-type:disc;}
ul.c {list-style-type:square;}

ol.d {list-style-type:armenian;}
ol.e {list-style-type:cjk-ideographic;}
ol.f {list-style-type:decimal;}
ol.g {list-style-type:decimal-leading-zero;}
ol.h {list-style-type:georgian;}
ol.i {list-style-type:hebrew;}
ol.j {list-style-type:hiragana;}
ol.k {list-style-type:hiragana-iroha;}
ol.l {list-style-type:katakana;}
ol.m {list-style-type:katakana-iroha;}
ol.n {list-style-type:lower-alpha;}
ol.o {list-style-type:lower-greek;}
ol.p {list-style-type:lower-latin;}
ol.q {list-style-type:lower-roman;}
ol.r {list-style-type:upper-alpha;}
ol.s {list-style-type:upper-latin;}
ol.t {list-style-type:upper-roman;}

ol.u {list-style-type:none;}
ol.v {list-style-type:inherit;}

表格边框

1.指定了一个表格的Th和TD元素的黑色边框
table, td, th {
border: 1px solid black;
}
2.折叠边框
table
{border-collapse:collapse;}
3.表格宽度和高度
table
{ width:100%;}
th
{ height:50px;}
4.表格文字对齐
td
{ text-align:center;}
5.垂直对齐
比如顶部,底部或中间
td
{ vertical-align:bottom; }
6.表格背景颜色,字体颜色
th
{
background-color:red;
color:white;
}
7.标题位置
caption
{ caption-side:bottom;}

相关文章

网友评论

      本文标题:CSS链接

      本文链接:https://www.haomeiwen.com/subject/kdgjaxtx.html