Code description:
In this paragraph, a large block DIV is defined; and an ID is given to it; there are four tags below: LI, A, SPAN, and IMG; so that we can set it in CSS These four tags are used to achieve the effect we want;
>http://www.zishu.cn/blogview.asp?logID=553">64d / 47 hits pixu
.....
The following paragraph defines the basic content of the web page and the style of the link;
body{ font -size:12px; line-height:1.8; font-family:Verdana, "宋体", Arial,Sans; text-align:center; background:#FFF; color:#666; margin:50px; padding:0; list -style:none; }
a:link,a:visited{color:#000099; text-decoration: underline;}
a:hover,a:active{color:#000;text-decoration: none ;}
The following line defines the horizontal display of the list. Each LI occupies 14% of the width; 14% is equal to 100% divided by 7 blocks; and the content in the LI should be displayed in the center; margin:0 auto; This sentence is to achieve centered display of FIREFOX;
#zishu_test li{ float:left; width:14%; text-align:center; margin:0 auto; list-style:none }
The following This line uniformly defines the A tag; border, width, background, etc.; In fact, there is already a border at this time, but it is the same as the background color; you cannot see it; if you change the background color of the web page, you will see it The effect is achieved;
#zishu_test li a{border-right:1px solid #fff;border-bottom:1px solid #fff; width:100px; height:110px; background:#fff;display:block; padding-top:10px; margin:auto}
The following defines the image, adding a white space effect to the edge of the image; and a border effect;
#zishu_test li img{ width:75px; height:75px ; display:block; text-align:center; margin:auto; background:#FFF; padding:3px; border:1px solid #D8A18B;}
The following line is to hide the content in the SPAN tag;
#zishu_test li span{display:none;}
The following line is to define the effect of moving the mouse up; mainly to display the content in SPAN; and to define the position of SPAN content; Note; to define the position of SPAN in this way will There are different effects in different browsers; that’s why there are the two lines of code at the end; also note that only SPAN is defined here;
#zishu_test li a:hover span{ margin-top :-10px;display:block; border-bottom:1px solid #666; border-right:1px solid #666; background:#FA9000; width:100px; color:#FFF; position:absolute; }
The following The two lines are written so that the effect seen in different browsers is the same; mainly written for IE6 and IE7; some people ask why not write IMPORTANT in the previous line? You will know after trying it and thinking about it. ; I use this method to change IE6 and IE7; I don’t know how; because I really can’t think of a better way;
* html #zishu_test li a:hover span {margin-left:- 8px; } /* IE6 */
* html #zishu_test li a:hover span {margin-left:-8px; }/* IE7*/
The last line is simple; just change the color of the border, It gives the impression that there is a change when the mouse moves up;
#zishu_test li a:hover{ border-right:1px solid #D8A18B;border-bottom:1px solid #D8A18B; width:100px; height:110px ; background:#F5F5F5;display:block; padding-top:10px;}
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn