簡體   English   中英

ul / li下拉菜單不與左側對齊?

[英]ul/li Drop Down not aligning to the left?

我正在嘗試為我的“設置”頁面標簽創建下拉菜單,現在在台式機上打開時可以正常使用,沒有問題,但是在移動/平板電腦上打開或縮小瀏覽器大小時,我的標簽菜單在“感。 看起來好像是在向右下拉,如果它向左下拉則可能會修復它。 無論如何都不知道,所以我想知道是否有人知道如何解決這個問題?

當前桌面示例 在此處輸入圖片說明

當前的移動示例 在此處輸入圖片說明

我想要的方式 在此處輸入圖片說明

的HTML

<body>
    <div id="header">
        <div id="headerTitle">
            <p>Project Archive</p>
        </div>
        <div id="nav">
            <ul>
                <li class="navOn"><a class="active" href="Home.php">Home</a></li>
                <li><a href="Home.php">All</a></li>
                <li><a href="Home.php">Categories</a></li>
                <li><a href="Home.php">Quote</a></li>
                <li><a href="Home.php">Support</a></li>
                <li class="dropdown">
                <a href="#" class="dropbtn">Settings</a>
                    <div class="dropdown-content">
                    <a href="#">Link 1</a>
                        <a href="#">Link 2</a>
                        <a href="#">Link 3</a>
                    </div>
                </li>
            </ul>
        </div>

    </div>
    <div id="search">
        <p>Search Your Documents...</p>
        <form action="Home.php" method="post">
            <input type="text" name="search" placeholder="search" class="tbSearch">
        </form>
    </div>

    <div id="documents">
        <div id="docGrid">
            <div id="docLeft">
                <div id="docName">
                    <p>Doc Name</p>
                </div>
                <div id="docDescription">
                    <p>This is the area where the description of the document will be displayed.</p>
                </div>
                <div id="docOpen">
                    <table class="btnOpen">
                        <tr>
                            <td>OPEN</td>
                        </tr>
                    </table>
                </div>
            </div>

            <div id="docRight">
                <div id="docName">
                    <p>Doc Name</p>
                </div>
                <div id="docDescription">
                    <p>This is the area where the description of the document will be displayed.</p>
                </div>
                <div id="docOpen">
                    <table class="btnOpen">
                        <tr>
                            <td>OPEN</td>
                        </tr>
                    </table>
                </div>
            </div>
        </div>
    </div>

    <div id="docGrid">
            <div id="docLeft">
                <div id="docName">
                    <p>Doc Name</p>
                </div>
                <div id="docDescription">
                    <p>This is the area where the description of the document will be displayed.</p>
                </div>
                <div id="docOpen">
                    <table class="btnOpen">
                        <tr>
                            <td>OPEN</td>
                        </tr>
                    </table>
                </div>
            </div>

            <div id="docRight">
                <div id="docName">
                    <p>Doc Name</p>
                </div>
                <div id="docDescription">
                    <p>This is the area where the description of the document will be displayed.</p>
                </div>
                <div id="docOpen">
                    <table class="btnOpen">
                        <tr>
                            <td>OPEN</td>
                        </tr>
                    </table>
                </div>
            </div>
        </div>
    </div>

    <div id="docGrid">
            <div id="docLeft">
                <div id="docName">
                    <p>Doc Name</p>
                </div>
                <div id="docDescription">
                    <p>This is the area where the description of the document will be displayed.</p>
                </div>
                <div id="docOpen">
                    <table class="btnOpen">
                        <tr>
                            <td>OPEN</td>
                        </tr>
                    </table>
                </div>
            </div>

            <div id="docRight">
                <div id="docName">
                    <p>Doc Name</p>
                </div>
                <div id="docDescription">
                    <p>This is the area where the description of the document will be displayed.</p>
                </div>
                <div id="docOpen">
                    <table class="btnOpen">
                        <tr>
                            <td>OPEN</td>
                        </tr>
                    </table>
                </div>
            </div>
        </div>
    </div>

        <div id="docGrid">
            <div id="docLeft">
                <div id="docName">
                    <p>Doc Name</p>
                </div>
                <div id="docDescription">
                    <p>This is the area where the description of the document will be displayed.</p>
                </div>
                <div id="docOpen">
                    <table class="btnOpen">
                        <tr>
                            <td>OPEN</td>
                        </tr>
                    </table>
                </div>
            </div>

            <div id="docRight">
                <div id="docName">
                    <p>Doc Name</p>
                </div>
                <div id="docDescription">
                    <p>This is the area where the description of the document will be displayed.</p>
                </div>
                <div id="docOpen">
                    <table class="btnOpen">
                        <tr>
                            <td>OPEN</td>
                        </tr>
                    </table>
                </div>
            </div>
        </div>
    </div>
</body>

的CSS

@charset "utf-8";
body{
    background:#E8E8E8; 
    overflow-x:hidden;
}
#header{
    width:100%;
    height:80px;
    font-weight:bold;
}
#search{
    height:115px;
    background-color:#4C66A4;   
    color:#FFF;
    text-align:center;
    font-size:18px;
    font-weight:bold;
    padding-top:10px;
}
#navTop{
    height:5px;
    margin-bottom:20px;
    background-color:#4C66A4;
}
#documents{
    width:100%;
    height:100%;    
}
#docGrid{
    height:225px;
    margin-left:10%;
    margin-right:10%;
    margin-top:20px;
    margin-bottom:20px;
}
#docLeft{
    float:left;
    height:222px;
    width:45%;
    background-color:#FFF;
    border-bottom:3px solid #BEBEBE;    
}
#docRight{
    float:right;
    height:222px;
    width:45%;
    background-color:#FFF;
    border-bottom:3px solid #BEBEBE;
}
#docName{
    text-align:center;
    margin-top:10px;
    margin-bottom:10px;
    font-size:16px;
    font-weight:bold;
}
#docDescription{
    text-align:center;
    margin-top:10px;
    margin-bottom:10px;
    margin-left:5px;
    margin-right:5px;
    height:110px;   
}
#docOpen{   
    text-align:center;      
    margin-left:17.5%;
    margin-right:17.5%;
    margin-top:10px;
    margin-bottom:10px;
}
#headerTitle{
    float:left;
    font-weight:bold;
    font-size:20px;
    text-align:center;
    width:25%;  
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size:12px;
    height:80px;    
}
.navOn{
    border-top:3px solid #4C66A4;   
    height:47px;
    padding-top:27px;
}
li {
    float: left;
    width:12%;
    height:50px;
    padding-top:30px;
    text-align:center;
}
a:visited {
    text-decoration: none; 
    color:#000; 
}
li a, .dropbtn {
    display: inline-block;
    color: #000;
    text-align: center;
    text-decoration: none;
}
li.dropdown {
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: #f1f1f1
}
.dropdown:hover .dropdown-content {
    display: block;
}
.btnOpen{
    text-align:center;
    vertical-align:middle;
    height:30px;
    width:100%;
    border-radius:5px;
    background-color:#4C66A4;
    color:#FFF;
    font-size:15px;
    font-weight:bold;
}   
.headerTitle{
    font-size:20px;
    text-align:center;  
    vertical-align:middle;
    font-weight:bold;
}
.tbSearch{
    border: 1px solid #848484; 
    -webkit-border-radius: 30px; 
    -moz-border-radius: 30px; 
    border-radius: 30px; 
    outline:0;  
    padding-left:10px; 
    padding-right:10px; 
    margin-top:0;
    margin-bottom:0;
    margin-left:12.5%;
    margin-right:12.5%;
    width:75%;
    height:25px;
    font-size:15px;
}
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
}

編輯

提供給Sagar Kodte的評論示例:

在此處輸入圖片說明

嘗試使用flexbox。 我還為html和body元素添加了0px的邊距。 如果沒有它感覺更好,請隨時刪除

 @charset "utf-8"; html, body{ margin: 0; padding: 0; } body{ background:#E8E8E8; overflow-x: hidden; } #header{ width:100%; height:80px; font-weight:bold; } #search{ height:115px; background-color:#4C66A4; color:#FFF; text-align:center; font-size:18px; font-weight:bold; padding-top:10px; } #navTop{ height:5px; margin-bottom:20px; background-color:#4C66A4; } #documents{ width:100%; height:100%; } #docGrid{ height:225px; margin-left:10%; margin-right:10%; margin-top:20px; margin-bottom:20px; } #docLeft{ float:left; height:222px; width:45%; background-color:#FFF; border-bottom:3px solid #BEBEBE; } #docRight{ float:right; height:222px; width:45%; background-color:#FFF; border-bottom:3px solid #BEBEBE; } #docName{ text-align:center; margin-top:10px; margin-bottom:10px; font-size:16px; font-weight:bold; } #docDescription{ text-align:center; margin-top:10px; margin-bottom:10px; margin-left:5px; margin-right:5px; height:110px; } #docOpen{ text-align:center; margin-left:17.5%; margin-right:17.5%; margin-top:10px; margin-bottom:10px; } #headerTitle{ float:left; font-weight:bold; font-size:20px; text-align:center; width:25%; } ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; font-size:12px; height:80px; display: flex; } .navOn{ border-top:3px solid #4C66A4; height:47px; padding-top:27px; } li { height:50px; padding-top:30px; text-align:center; display: block; flex: 1; } a:visited { text-decoration: none; color:#000; } li a, .dropbtn { display: inline-block; color: #000; text-align: center; text-decoration: none; } li.dropdown { display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; text-align: left; } .dropdown-content a:hover { background-color: #f1f1f1 } .dropdown:hover .dropdown-content { display: block; } .btnOpen{ text-align:center; vertical-align:middle; height:30px; width:100%; border-radius:5px; background-color:#4C66A4; color:#FFF; font-size:15px; font-weight:bold; } .headerTitle{ font-size:20px; text-align:center; vertical-align:middle; font-weight:bold; } .tbSearch{ border: 1px solid #848484; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; outline:0; padding-left:10px; padding-right:10px; margin-top:0; margin-bottom:0; margin-left:12.5%; margin-right:12.5%; width:75%; height:25px; font-size:15px; } @media only screen and (min-width: 769px) { #header{ width: 80%; margin-left: 5%; } } 
 <body> <div id="header"> <div id="headerTitle"> <p>Project Archive</p> </div> <div id="nav"> <ul> <li class="navOn"><a class="active" href="Home.php">Home</a></li> <li><a href="Home.php">All</a></li> <li><a href="Home.php">Categories</a></li> <li><a href="Home.php">Quote</a></li> <li><a href="Home.php">Support</a></li> <li class="dropdown"> <a href="#" class="dropbtn">Settings</a> <div class="dropdown-content"> <a href="#">Link 1</a> <a href="#">Link 2</a> <a href="#">Link 3</a> </div> </li> </ul> </div> </div> <div id="search"> <p>Search Your Documents...</p> <form action="Home.php" method="post"> <input type="text" name="search" placeholder="search" class="tbSearch"> </form> </div> <div id="documents"> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> </body> 

希望對您有幫助。 已編輯

 @charset "utf-8"; body{ background:#E8E8E8; overflow-x:hidden; } #header{ width:100%; height:80px; font-weight:bold; } #search{ height:115px; background-color:#4C66A4; color:#FFF; text-align:center; font-size:18px; font-weight:bold; padding-top:10px; } #navTop{ height:5px; margin-bottom:20px; background-color:#4C66A4; } #documents{ width:100%; height:100%; } #docGrid{ height:225px; margin-left:10%; margin-right:10%; margin-top:20px; margin-bottom:20px; } #docLeft{ float:left; height:222px; width:45%; background-color:#FFF; border-bottom:3px solid #BEBEBE; } #docRight{ float:right; height:222px; width:45%; background-color:#FFF; border-bottom:3px solid #BEBEBE; } #docName{ text-align:center; margin-top:10px; margin-bottom:10px; font-size:16px; font-weight:bold; } #docDescription{ text-align:center; margin-top:10px; margin-bottom:10px; margin-left:5px; margin-right:5px; height:110px; } #docOpen{ text-align:center; margin-left:17.5%; margin-right:17.5%; margin-top:10px; margin-bottom:10px; } #headerTitle{ float:left; font-weight:bold; font-size:20px; text-align:center; width:25%; } ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; font-size:11px; height:80px; } .navOn{ border-top:3px solid #4C66A4; height:47px; padding-top:27px; } li { float: left; width:16%; height:50px; padding-top:30px; text-align:center; } a:visited { text-decoration: none; color:#000; } li a, .dropbtn { display: inline-block; color: #000; text-align: center; text-decoration: none; } li.dropdown { display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; text-align: left; } .dropdown-content a:hover { background-color: #f1f1f1 } .dropdown:hover .dropdown-content { display: block; } .btnOpen{ text-align:center; vertical-align:middle; height:30px; width:100%; border-radius:5px; background-color:#4C66A4; color:#FFF; font-size:15px; font-weight:bold; } .headerTitle{ font-size:20px; text-align:center; vertical-align:middle; font-weight:bold; } .tbSearch{ border: 1px solid #848484; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; outline:0; padding-left:10px; padding-right:10px; margin-top:0; margin-bottom:0; margin-left:12.5%; margin-right:12.5%; width:75%; height:25px; font-size:15px; } @media only screen and (max-width: 480px) { li a { font-size:8px;} } @media only screen and (max-width: 320px) { li a { font-size:5px; !important} } 
 <div id="header"> <div id="headerTitle"> <p>Project Archive</p> </div> <div id="nav"> <ul> <li class="navOn"><a class="active" href="Home.php">Home</a></li> <li><a href="Home.php">All</a></li> <li><a href="Home.php">Categories</a></li> <li><a href="Home.php">Quote</a></li> <li><a href="Home.php">Support</a></li> <li class="dropdown"> <a href="#" class="dropbtn">Settings</a> <div class="dropdown-content"> <a href="#">Link 1</a> <a href="#">Link 2</a> <a href="#">Link 3</a> </div> </li> </ul> </div> </div> <div id="search"> <p>Search Your Documents...</p> <form action="Home.php" method="post"> <input type="text" name="search" placeholder="search" class="tbSearch"> </form> </div> <div id="documents"> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> 

希望這就是你想要的。

 @charset "utf-8"; body{ background:#E8E8E8; overflow-x:hidden; } #header{ width:100%; min-height:80px; font-weight:bold; overflow:hidden; } #search{ height:115px; background-color:#4C66A4; color:#FFF; text-align:center; font-size:18px; font-weight:bold; padding-top:10px; } #navTop{ height:5px; margin-bottom:20px; background-color:#4C66A4; } #documents{ width:100%; height:100%; } #docGrid{ height:225px; margin-left:10%; margin-right:10%; margin-top:20px; margin-bottom:20px; } #docLeft{ float:left; height:222px; width:45%; background-color:#FFF; border-bottom:3px solid #BEBEBE; } #docRight{ float:right; height:222px; width:45%; background-color:#FFF; border-bottom:3px solid #BEBEBE; } #docName{ text-align:center; margin-top:10px; margin-bottom:10px; font-size:16px; font-weight:bold; } #docDescription{ text-align:center; margin-top:10px; margin-bottom:10px; margin-left:5px; margin-right:5px; height:110px; } #docOpen{ text-align:center; margin-left:17.5%; margin-right:17.5%; margin-top:10px; margin-bottom:10px; } #headerTitle{ float:left; font-weight:bold; font-size:20px; text-align:center; width:25%; } ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; font-size:12px; min-height:80px; } .navOn{ border-top:3px solid #4C66A4; height:47px; padding-top:27px; } li { width: 10%; padding:30px 10px 0px 10px; height:50px; padding-top:30px; text-align:center; float:left; } a:visited { text-decoration: none; color:#000; } li a, .dropbtn { display: inline-block; color: #000; text-align: center; text-decoration: none; } li.dropdown { display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; text-align: left; } .dropdown-content a:hover { background-color: #f1f1f1 } .dropdown:hover .dropdown-content { display: block; } .btnOpen{ text-align:center; vertical-align:middle; height:30px; width:100%; border-radius:5px; background-color:#4C66A4; color:#FFF; font-size:15px; font-weight:bold; } .headerTitle{ font-size:20px; text-align:center; vertical-align:middle; font-weight:bold; } .tbSearch{ border: 1px solid #848484; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; outline:0; padding-left:10px; padding-right:10px; margin-top:0; margin-bottom:0; margin-left:12.5%; margin-right:12.5%; width:75%; height:25px; font-size:15px; } } /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */ @media only screen and (min-width: 481px) { } /* Desktop Layout: 769px to a max of 1232px. Inherits styles from: Mobile Layout and Tablet Layout. */ @media only screen and (min-width: 769px) { } 
 <body> <div id="header"> <div id="headerTitle"> <p>Project Archive</p> </div> <div id="nav"> <ul> <li class="navOn"><a class="active" href="Home.php">Home</a></li> <li><a href="Home.php">All</a></li> <li><a href="Home.php">Categories</a></li> <li><a href="Home.php">Quote</a></li> <li><a href="Home.php">Support</a></li> <li class="dropdown"> <a href="#" class="dropbtn">Settings</a> <div class="dropdown-content"> <a href="#">Link 1</a> <a href="#">Link 2</a> <a href="#">Link 3</a> </div> </li> </ul> </div> </div> <div id="search"> <p>Search Your Documents...</p> <form action="Home.php" method="post"> <input type="text" name="search" placeholder="search" class="tbSearch"> </form> </div> <div id="documents"> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> <div id="docGrid"> <div id="docLeft"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> <div id="docRight"> <div id="docName"> <p>Doc Name</p> </div> <div id="docDescription"> <p>This is the area where the description of the document will be displayed.</p> </div> <div id="docOpen"> <table class="btnOpen"> <tr> <td>OPEN</td> </tr> </table> </div> </div> </div> </div> </body> 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM