易截截图软件、单文件、免安装、纯绿色、仅160KB

css菜单导航

这是我在一个网站上看到的,CSS控制一个菜单,很经典实用
Css文件如下:css.css
@charset "UTF-8";
/* navigation.css
$Revision: 1.0 $
(c) 2008 Fortinet, Inc. All rights reserved.
*/
/* Navigation Styles ------------------------------------------- */
#wrapper
{
 width:1000px;margin:0 auto;
}
#nav_bar {
 clear: both;
 background: url(./menu_bkrd.jpg) repeat-x;
 height: 26px;
 width: 100%;
}
#navigation {
 padding: 0 0 0 10px;
}
#nav, #nav ul {
 float: left;
 list-style: none;
 line-height: 1;
 padding: 0 0 0 0; /* 0 0 0 0.5em; */
 margin: 0; /* 0 0 1em 0; */
 /* border: solid 1px #33FF00; /* (Green) remove this item after testing */
 width:auto;
}
#nav a {
 font: 11px/12px Tahoma, Arial, Helvetica, Verdana, sans-serif;
 color: #6a737b;
 display: block;
 width: 150px; /* 6em; 3em; 10em -- 150px*/
 text-decoration: none;
 padding: 7px 10px 4px 6px; /* 0.5em 3.5em 0.2em .5em; 0.4em 0 0.2em 0; // 0.4em 2em 0.2em 2em; // 0.5em 2em; */
  margin: 0px; /* 0.5em 2em;  uncommented - fixes extra space on right for IE  0 0 0 1px */
 /* border: solid 1px #FF0000; /* (Red) remove this item after testing */
}
#nav a.top_nav {
 font: 12px Arial, Helvetica, sans-serif;
 color: #6a737b;
 text-align: center;
 width: 90px;
 margin: 0;
 padding: 6px 0 4px 0;
 text-decoration: none;
 font-weight: bold;
 white-space: nowrap; /*  */
}
#nav a.nav_parent {
 background: url(./rightarrow.gif) center right no-repeat;
 /* white-space: nowrap; /*  */
 /* border: solid 1px #FFFF00; /* (yellow) remove this item after testing */
}
#nav li {
 /*float: left;*/
 padding: 0;
 /* width: 150px; /* 7.5em; 10em; 12em  178px; this has no affect whatsoever */
 /* border: solid 1px #FFFF00; /* (yellow) remove this item after testing */
}
#nav li.top_nav


相关文档:

通过使页面动态加载不同CSS实现多界面

 通过使页面动态加载不同CSS实现多界面
方法一:
<%@page language="C#"%>
<%@import namespace="System.Data"%>
<script language="c#" runat="server">
public void page_load(Object obj,EventArgs e)
{
//创建服务器端控件.
//指定的标记"LINK"初始化此类的新实例.
HtmlGeneric ......

IE6不解析某些CSS代码的解决方法

网页采用了 UTF-8 编码格式,这本来没有问题,问题是外部 CSS 文件默认是 ANSI 编码,并没有保存为 UTF-8 格式。可能你会发现在一般情况下这样也是没有问题的,然而当 CSS 文件中包含有中文注释时就可能不尽如人意了!
  估计是 IE6 版本以下的浏览器在解析这个 CSS 文件时因为编码问题而无法正确解析,所以才会发生 CSS ......

css经典样式

一 CSS文字属性:
color : #999999; /*文字颜色*/
font-family : 宋体,sans-serif; /*文字字体*/ 
font-size : 9pt; /*文字大小*/ 
font-style:itelic; /*文字斜体*/ 
font-variant:small-caps; /*小字体*/ 
letter-spacing : 1pt; /*字间距离*/ 
line-height : 200%; /*设置行高*/  ......

CSS中存在的BUG

1.div的垂直居中问题 
vertical-align:middle; 
将行距增加到和整个DIV一样高 line-height:200px; 
然后插入文字,就垂直居中了。缺点是要控制内容不要换行。
2. margin加倍的问题     
设置为float的div在ie下设置的margin会加倍。这是一个ie6都存在的bug。
解决方案 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号