外部样式表
当样式需要应用于很多页面时,外部样式表将是理想的选择。在使用外部样式表的情况下,你可以通过改变一个文件来改变整个站点的外观。每个页面使用 <link>标签链接到样式表。<link>标签在(文档的)头部:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css" />
</head>
浏览器会从文件 mystyle.css 中读到样式声明,并根据它来格式文档。
外部样式表可以在任何文本编辑器中进行编辑。文件不能包含任何的 html 标签。样式表应该以 .css 扩展名进行保存。下面是一个样式表文件的例子:
hr {color: sienna}
p {margin-left: 20px}
body {background-image: url("images/back40.gif")}
不要在属性值与单位之间留有空格。假如你使用 “margin-left: 20 px” 而不是 “margin-left: 20px” ,它仅在 IE 6 中有效,但是在 Mozilla/Firefox 或 Netscape 中却无法正常工作。
内部样式表
当单个文档需要特殊的样式时,就应该使用内部样式表。你可以使用 <style>标签在文档头部定义内部样式表,就像这样:
<head>
<style type="text/css">
hr {color: sienna}
p {margin-left: 20px}
body {background-image: url("images/back40.gif")}
</style>
</head>
内联样式
由于要将表现和内容混杂在一起,内联样式会损失掉样式表的许多优势。请慎用这种方法,例如当样式仅需要在一个元素上应用一次时。
要使用内联样式,你需要在相关的标签内使用样式(style)属性。Style 属性可以包含任何 CSS 属性。本例展示如何改变段落的颜色和左外边距:
<p style="color: siennamargin-left: 20px">
This is a paragraph
</p>
多重样式
如果某些属性在不同的样式表中被同样的选择器定义,那么属性值将从更具体的样式表中被继承过来。
例如,外部样式表拥有针对 h3 选择器的三个属性:
h3 {
color: red
text-align: left
font-size: 8pt
}
而内部样式表拥有针对 h3 选择器的两个属性:
h3 {
text-align: right
font-size: 20pt
}
假如拥有内部样式表的这个页面同时与外部样式表链接,那么 h3 得到的样式是:
color: red
text-align: right
font-size: 20pt
即颜色属性将被继承于外部样式表,而文字排列(text-alignment)和字体尺寸(font-size)会被内部样式表中的规则取代。
来源:http://www.w3school.com.cn/css/css_howto.asp
当然了,你这样写是给<a></a>赋予样式也就是说所有的链接会是这种样式
可以把
a {
font-family: "宋体"
font-size: 12px
font-weight: bold
color: #006699
text-decoration: none
line-height: 12px
width: 100px
display: block
vertical-align: middle
}
换个名字,如
.aa{
font-family: "宋体"
font-size: 12px
font-weight: bold
color: #006699
text-decoration: none
line-height: 12px
width: 100px
display: block
vertical-align: middle
}
.aa a:hover {
font-family: "宋体"
line-height: 12px
font-size: 12px
font-weight: bold
color: #FF9900
text-decoration: none
}
div.speech {width: 200px
margin: 10px 0
padding: 8px 8px 8px 8px
table-layout: fixed
word-break: break-all
position: relative
background: -webkit-gradient( linear, 50% 0%, 50% 100%, from(#ffffff), color-stop(0.1, #ececec), color-stop(0.5, #dbdbdb), color-stop(0.9, #dcdcdc), to(#8c8c8c) )
border: 1px solid #989898
-webkit-border-radius: 8px
-moz-border-radius: 8px
border-radius: 8px
}
给这个css加个宽度200px,是不是就可以达到你要的效果?