示例代码如下:
关键在CSS中的两句代码:“position:relative; top:1px;

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    
<title>Table Style Demo</title>
<style type="text/css">
        .tab
        
{
            float
:left;
            position
:relative;
            top
:1px;
            background-color
:#eeeeee;
            border
:solid 1px black;
            padding
:0px 15px;
            margin-left
:5px;
        
}

        .selectedTab
        
{
            background-color
:white;
            border-bottom
:solid 1px white;
        
}

        .tabContents
        
{
            border
:solid 1px black;
            background-color
:white;
            padding
:10px;
            height
:200px;
        
}

    
</style>
</head>

<body>
<div class="tab selectedTab">tab1</div>
<div class="tab">tab2</div>
<div class="tab">tab3</div>
<br style="clear:both;" />
<div class="tabContents">Content</div>
</body>
</html>
posted on 2008-02-15 14:34  Jacky Huang  阅读(797)  评论(1编辑  收藏  举报