在做web时收集下来的,懒得写清楚了,有的代码怎么用要自己琢磨吧!
1、表格半透明,但文字清楚(常规是文字也跟着半透明的,但这个代码解决了这个问题)
<body bgcolor="#FF0000">
<table width="61%" height="173" border="0" cellpadding="0" cellspacing="0" style="FILTER:alpha(opacity=50)">
<tr>
<td bgcolor="#FFFFFF"><span style="position:relative"><p> www.blueidea.com</p>
<p>http://www.blueidea.com</p></span></td>
</tr></table>
</body>
实用,但表格里有层,不算很规范的代码。
2、去掉链接时出现的虚线框
a、<a href=# hidefocus=true>hehe</a>
b、<style>a{mayfish:expression(this.onfocus=this.blur);cursor:hand}</style>(定义了样式表,实用!!)
3、打造不一样的fieldset(原理:引用不同的css样式,css设置的多样性可做出不同的效果,参数自己修改和增减)
<style>
#look {
font-family: "Verdana";
font-size: 10px;
border:0px solid lightblue;
width:500px;
height:10px;
padding:10px;
}
#look2 {
font-family: "Verdana";
font-size: 10px;
border:1px solid lightblue;
width:100px;
height:10px;
text-align:center;
padding:3px;
}
</style>
<fieldset id="look"><legend id=look2>Test</legend>Look</fieldset>
先发到这里!
1、表格半透明,但文字清楚(常规是文字也跟着半透明的,但这个代码解决了这个问题)
<body bgcolor="#FF0000">
<table width="61%" height="173" border="0" cellpadding="0" cellspacing="0" style="FILTER:alpha(opacity=50)">
<tr>
<td bgcolor="#FFFFFF"><span style="position:relative"><p> www.blueidea.com</p>
<p>http://www.blueidea.com</p></span></td>
</tr></table>
</body>
实用,但表格里有层,不算很规范的代码。
2、去掉链接时出现的虚线框
a、<a href=# hidefocus=true>hehe</a>
b、<style>a{mayfish:expression(this.onfocus=this.blur);cursor:hand}</style>(定义了样式表,实用!!)
3、打造不一样的fieldset(原理:引用不同的css样式,css设置的多样性可做出不同的效果,参数自己修改和增减)
<style>
#look {
font-family: "Verdana";
font-size: 10px;
border:0px solid lightblue;
width:500px;
height:10px;
padding:10px;
}
#look2 {
font-family: "Verdana";
font-size: 10px;
border:1px solid lightblue;
width:100px;
height:10px;
text-align:center;
padding:3px;
}
</style>
<fieldset id="look"><legend id=look2>Test</legend>Look</fieldset>
先发到这里!
回复Comments
{commenttime}{commentauthor}
{CommentUrl}
{commentcontent}