合页旋铆机:css的一些具体操作?

来源:百度文库 编辑:杭州交通信息网 时间:2024/05/02 01:21:10
我看了很多css的知识,但这些编码写在哪里呀,是不是有个软件,把编好的编码写进去呀

<style type="text/css">
<!--
.style13 {color: #FFFFFF}
.style14 {color: #000000}
.style4 { font-size: 9px;
color: #000000;
}
.STYLE15 {font-size: 12px}
.STYLE16 {
color: #FF9900;
font-size: 12;
}
-->
</style>
<style type="text/css">
<!-- .textanimlink,a {text-decoration : none;}
A:link,A:visited ,A:active {TEXT-DECORATION: none}
A:hover {text-decoration : none; position : relative; top : 1px; left : 1px}

P.main {font-family : Arial;font-size : 15pt;font-weight : bold;}.STYLE2 {font-size: 14px}
.STYLE17 {font-size: 12px; color: #66CC33; }
.STYLE5 {color: #33FF66}
-->
</style>

象上面这些编码,要把他们写在哪里,或者说一个平台,让他们和网络连上,我在WORD上编好了,就是不知道怎么挂在网上,我要在百度空间里做网页

一般有两种方式,第一你可以把它写在每个网页的开头,然后在网页里直接调用.<span class=style13>文字</span>;另外就是外部调用.你把你上边这段编码保存为css.css然后在你想调用的网页head部分加上<link href="css.css" rel="stylesheet" type="text/css" />.然后传到你的空间就OK了