CSS字体设置_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:39:20
Original
1572 people have browsed it

字体颜色设置:color

      <base href="<%=basePath%>">    <style type="text/css">  	div{  		color: blue;  	}  	a{  		color: red;  	}  </style>      <div><span>Hello World!</span></div>    <a>你好!</a>    <p style="color:#D95624;">11111</p>  
Copy after login

运行结果:



字体大小设置:font-size

<pre name="code" class="html">      <base href="<%=basePath%>">    <style type="text/css">  	div{  		font-size: 22pt;  	}  	a{  	    /*浏览器中默认的文本大小是 16 像素。因此 1em 的默认尺寸是 16 像素,同时W3C标准推荐的也是em作为字体大小的度量单位*/  		font-size: 1em;  	}  </style>      <div>二号字 ,磅值为:22</div>    <a>1em的字体</a>    <p style="font-size: 32px;">32像素的字体</p>    <span style="font-size: 200%">2em的字体</span>  
Copy after login

运行的结果


Copy after login
Copy after login
字体类型:font-family
Copy after login
<pre name="code" class="html">      <base href="<%=basePath%>">    <style type="text/css">  	div{  	    /*仿宋*/  		font-family:仿宋_GB2312;  	}  	a{  	    /*微软雅黑,宋体*/  		font-family : 微软雅黑,宋体;  	}  </style>      <div>仿宋_GB2312</div>    <a>微软雅黑,宋体</a>    <p style="font-family:黑体;">黑体</p>    <span style="font-family: Times New Roman;">Times New Roman</span>  
Copy after login

运行结果:
<img src="http://img.blog.csdn.net/20150807235228635" alt="">
Copy after login
Copy after login
Copy after login
其它:
Copy after login
<pre name="code" class="html">      <base href="<%=basePath%>">    <style type="text/css">  	div{  	    /*文本斜体显示*/  		font-style: italic;  	}  	a{  	    /*字体加粗*/  		font-weight:bold;   	}  </style>      <a>字体加粗</a>    <div>文本斜体显示</div>    <span   style="max-width:90%">加下划线</span>  
Copy after login

运行的结果:
<img src="http://img.blog.csdn.net/20150807235305830" alt="">
Copy after login


版权声明:本文为博主原创文章,未经博主允许不得转载。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!