Heim  >  Artikel  >  Web-Frontend  >  CSS3学习选择器、字体_html/css_WEB-ITnose

CSS3学习选择器、字体_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:05:25959Durchsuche

??

属性选择器:
[att*=val]{}若att元素属性值包含val指定字符,则使用该样式
[att^=val]{}若att元素属性值开头字符为val,则使用该样式
[att&=val]{}若att元素属性值结尾字符为val,则使用该样式

例:

<style type="text/css">[id^=section1]{		background-color: yellow;	}</style>

<div id="section2">示例文本2</div>	<div id="subsection1">示例文本1-1</div>	<div id="subsection2">示例文本1-2</div>	<div id="subsection2-1">示例文本2-1</div>	<div id="subsection2-2">示例文本2-2</div>


target选择器:

页面内href跳转时,重新定义目标的属性


font字体:以前的版本网页中应用的特殊字体只有在客户端有这个字体时候该字体才能正常显示,

             而css3支持从服务器中获取字体,也就是说你把字体文件放到font文件夹,可以直接通过url使用这个字体

             这一新的变化真的带来了很大的便利。例:

@font-face{		font-family: WebFont;		src:url('font/FZJZFW.TTF') format("truetype");		font-weight: normal;	}
article{		font-family: WebFont;	}

<article>	<h1>文章内容</h1>	<p>网页级内容区块的正文</p>	<section>		<h3>section级内容的正文</h3>		<p>section级内容区块的正文</p>	</section></article>



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn