主页 > 编程资料 > 前端教程 >
发布时间:2015-09-24 作者:网络 阅读:215次

给超级链接增加其他样式

<html><head><div type="text/css" cdata_tag="style" cdata_data="a.one:link {color: #ff0000} 
a.one:visited {color: #0000ff} 
a.one:hover {color: #ffcc00}
a.two:link {color: #ff0000} 
a.two:visited {color: #0000ff} 
a.two:hover {font-size: 150%}
a.three:link {color: #ff0000} 
a.three:visited {color: #0000ff} 
a.three:hover {background: #66ff66}
a.four:link {color: #ff0000} 
a.four:visited {color: #0000ff} 
a.four:hover {font-family: monospace}
a.five:link {color: #ff0000; text-decoration: none} 
a.five:visited {color: #0000ff; text-decoration: none} 
a.five:hover {text-decoration: underline}" _ue_custom_node_="true"></div></head><body><p>Mouse over the links to see them change layout.</p><p><strong><a class="one" href="default.asp" target="_blank" _href="default.asp">This link changes color</a></strong></p><p><strong><a class="two" href="default.asp" target="_blank" _href="default.asp">This link changes font-size</a></strong></p><p><strong><a class="three" href="default.asp" target="_blank" _href="default.asp">This link changes background-color</a></strong></p><p><strong><a class="four" href="default.asp" target="_blank" _href="default.asp">This link changes font-family</a></strong></p><p><strong><a class="five" href="default.asp" target="_blank" _href="default.asp">This link changes text-decoration</a></strong></p></body></html>


让文字的第一行特殊化

<html><head><div type="text/css" cdata_tag="style" cdata_data="p:first-line  

{ 

color: #ff0000; 

font-variant: small-caps 

}" _ue_custom_node_="true"></div></head><body><p>You can use the :first-line pseudo-element to 

 add a special effect to the first line of a text!</p></body></html>


关键字词: