css3 新功能:1.圆角,多背景,@font-face用户自定义字体,动画渐变,渐变色,盒阴影,rgba加入透明色,文字阴影等.2.css3的出现,让代码更简洁,页面结构更合理,性能和效果得到兼顾.3css3支持用户选择如何渲染盒式4box-sizing:content-box|border-bo...
分类:
Web程序 时间:
2015-01-06 11:51:00
阅读次数:
154
1、使用服务器字体使用服务器字体非常简单,只要使用@font-face定义服务器字体即可。格式如下: @font-face{ font-family:name;src:url(url) format(font-format); }到目前为止,服务器字体还只支持TrueType格式和OpenType格...
分类:
Web程序 时间:
2015-01-06 00:41:33
阅读次数:
250
字体下载 css3 @font-face css3...
分类:
Web程序 时间:
2015-01-05 22:02:09
阅读次数:
286
做了一个很简单的html,算是入门吧,慢慢学习
运行环境是在MAC系统下的code2
Help Info
html{height:100%; font-size:12pt; line-height:24pt;}
@font-face{font-family:'LockClock'; src: url('images/LockClock.ttf'); }
body{min-...
分类:
Web程序 时间:
2015-01-05 11:18:33
阅读次数:
249
NetworkError: 404 Not Found - http://xxxxxxxx/xx-font.woff解决方法 asp.net 中会遇到一个@font-face问题: NetworkError: 404 Not Found - http://xxxxxxxx/xx-font.woff修...
分类:
Web程序 时间:
2015-01-04 16:36:10
阅读次数:
459
<!--
/* Font Definitions */
@font-face
{font-family:Arial;
panose-1:2 11 6 4 2 2 2 2 2 4;
mso-font-charset:0;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:3 0 0 0 1...
分类:
移动开发 时间:
2015-01-02 23:45:16
阅读次数:
297
@font-face是CSS3中的一个模块,他主要是把自己定义的Web字体嵌入到你的网页中,随着@font-face模块的出现,我们在Web的开发中使用字体不怕只能使用Web安全字体,你们当中或许有许多人会不自然的问,这样的东西IE能支持吗?当我告诉大家@font-face这个功能早在IE4就支持了...
分类:
Web程序 时间:
2014-12-29 18:15:30
阅读次数:
248
@font-face是CSS3中的一个模块,他主要是把自己定义的Web字体嵌入到你的网页中,随着@font-face模块的出现,我们在Web的开发中使用字体不怕只能使用Web安全字体,另外@font-face这个功能早在IE4就支持了,比如说首页的Logo,Tags以及页面中的手写英文体这些都可以用...
分类:
Web程序 时间:
2014-12-23 13:48:52
阅读次数:
341
@font-face可以加载服务器端的字体到浏览器端,这样设计师就可以不受客户端字体库的限制。一般来说有四种格式的字体文件即可覆盖所有浏览器。这四种格式为:.EOT:适用于Internet Explorer 4.0+。.TTF或.OTF:适用于Firefox 3.5、Safari、Opera。.SV...
分类:
Web程序 时间:
2014-12-20 18:04:48
阅读次数:
266
第一步:使用font-face声明字体@font-face {font-family: 'iconfont'; src: url('iconfont.eot'); /* IE9*/ src: url('iconfont.eot?#iefix') format('embedded-open...
分类:
其他好文 时间:
2014-12-18 20:20:32
阅读次数:
340