当前位置: 代码迷 >> HTML/CSS >> html搜集
  详细解决方案

html搜集

热度:329   发布时间:2012-09-14 11:53:44.0
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  
  相关解决方案