`
xls
  • 浏览: 107471 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

html收集

 
阅读更多

1. 火狐下style="cursor:hand;"是无法显示手型的,那么怎么样才能在ie和火狐下都显示手型呢?很简单 style="cursor:pointer;" 就行了

2. align=|center|left|right|水平对齐方式

3. colspan="2"   设置一个表格格子跨占的3列数(缺省值为1);

     rowspan="2" 设置一个表格格子跨占的3行数(缺省值为1);

4. disabled="...",把控件的状态设置为不能使用;

5. css的优先级顺序从高到低是,元素内定,内嵌样式表,导入样式表,外联样式表。

元素内定
格式:<p style="font-size:10.5pt">

 

内嵌式样式表:
<style type="text/css">
td{font:9pt;color:red}    
.font105{font:10.5pt;color:blue}
</style>

 

导入式样式表
<style type="text/css">
<!--
@import url(css/home.css);
-->
</style>

 

外联式样式表
<link rel="stylesheet" href="/css/default.css">
属性:rel 用来说明<link>元素在这里要完成的任务是连接一个独立的css文件。而href属性给出了所要连接css文件的url地址

 

 

 

分享到:
评论
1 楼 xm_bluesky 2012-03-12  

相关推荐

Global site tag (gtag.js) - Google Analytics