PNG images support transparency~ which is very good, but the transparent part cannot be displayed correctly under IE6. This problem can be solved by using this css (there are other methods, but Baidu Space can only use css~_~)
filter:progid:DXImageTransform.Microsoft .AlphaImageLoader(src="png image address",sizingMethod='crop');
Add the above to css.
For example
#in_send form td.f14 input {
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" );
height:64px;
width:64px;
padding-top:120px;
font-size:1px;
border-right: #111 0px solid;
border-bottom: #111 0px solid;
border-top:#111 0px solid;
border-left:#111 0px solid;
margin-left:203px;
margin-top:-144px;
position: absolute;
}
In this way, the transparent part of the png can be displayed correctly under IE6 ~
I won’t talk about other methods. Find it yourself.