Css3文字新屬性
- 新增顏色模式
rgba(r,g,b,a)
r | red | 0~255 |
---|---|---|
g | green | 0~255 |
b | blue | 0~255 |
a | alpha | 0~1 |
例項:背景透明,文字不透明
- 文字陰影
text-shadow: x y blur color
文字陰影如果加多層,層之間用逗號分隔,會很卡。通過文字陰影可以做出很多文字特效,如浮雕、光暈。
文字模糊效果:
h1{font: 100px/200px "微軟雅黑"; text-align: center;color: #000; text-shadow:0 0 0 rgba(0,0,0,1); border: 1px solid #000}
h1:hover {color: rgba(0,0,0,0); text-shadow: 0 0 30px rgba(0,0,0,0.5)}
文字邊框
-webkit-text-stroke:寬度 顏色
但只有webkit的瀏覽器支援。文字排版
(1) direction 定義文字排列方式(全相容)
rtl 從右到左排列
ltr 從左到右排列
注意配合unicode-bidi一起使用
(2) text-overflow定義省略文字的處理方式
clip 無省略號
ellipsis 省略號 注意配合overflow:hidden和white-space:nowrap一起使用自定義字型
@font-face {
font-family: 'chm';
src:url('111-webfont.eot');
src:url('111-webfont.eot?#iefix') format('embedded-opentype'),
url('111-webfont.woff') format('woff'),
url('111-webfont.ttf') format('truetype'),
url('111-webfont.svg#untitledregular') format('svg');
font-weight: normal;
font-style: normal;
}
轉換字型格式生成相容程式碼
http://www.fontsquirrel.com/fontface/generator
相關文章
- css3核心屬性CSSS3
- CSS3常用屬性CSSS3
- CSS3 filter屬性CSSS3Filter
- CSS3 initial 屬性CSSS3
- CSS3 transition 屬性CSSS3
- CSS3的background屬性CSSS3
- CSS字型屬性和文字屬性詳解CSS
- CSS 常用文字屬性CSS
- css常用文字屬性CSS
- css文字屬性2CSS
- css3的一些新屬性及部分用法CSSS3
- css3新增哪些背景屬性CSSS3
- CSS3 background-size 屬性CSSS3
- css3 box-orient 屬性CSSS3
- css3中的animation屬性CSSS3
- css文字外觀屬性CSS
- html5/css3新增屬性HTMLCSSS3
- css3中transition屬性詳解CSSS3
- CSS——CSS 給文字加樣式:② 文字屬性CSS
- H5-21 文字屬性H5
- CSS3背景裁切屬性——background-clipCSSS3
- CSS outline-style 屬性: CSS3 outline-CSSS3
- PLC結構化文字(ST)——屬性(Property)
- 04-2個常用的文字屬性
- textarea 多行文字域 type 屬性值
- 純CSS3屬性animation實現的打字效果CSSS3
- css3實現文字線性漸變,css3實現背景漸變CSSS3
- CSS——CSS 給文字加樣式:① 字型屬性CSS
- css3 filter屬性,不會ps也沒關係CSSS3Filter
- 淺談CSS3中display屬性的Flex佈局CSSS3Flex
- 淺談CSS3中display屬性的Flex佈局(轉)CSSS3Flex
- CSS3屬性-webkit-font-smoothing字型抗鋸齒渲染CSSS3WebKit
- CSS3 文字效果CSSS3
- Linux下設定終端文字的顯示屬性Linux
- CMake 屬性之全域性屬性
- 使用者屬性 - MQTT 5.0 新特性MQQT
- [譯] 2019 CSS 新屬性“連字元”初探CSS字元
- CSS3花屏文字效果CSSS3
- defer 屬性和 async 屬性