HTML表格行上不同颜色的双单边边框

时间:2018-07-03 20:43:16

标签: html css

我正在尝试制作一张桌子,并且我希望某些行具有2个不同的彩色35px边框,有点像这样:

Multicolor Double Border Example

如果您知道这样做的方法,请告诉我,我在网上看到的所有花盆仅告诉您如何制作彩色的四边形边框,而我还没有弄清楚如何修改这些解决方案以仅适用于一条边缘。

2 个答案:

答案 0 :(得分:0)

您只需要将表格包装在<div>中,并应用左页边距和负盒阴影即可。

    <style type="text/css">
        .outer {
            padding-top: 35px;
            margin-left: 35px;
            box-shadow: -35px 0 0 rgba(0,0,128,0.8)
        }
        .outer table {
            border-collapse: collapse;
        }
        .outer th, .outer td {
            padding: 3px;
        }
        .ltBlue {
            background-color:cornflowerblue;
            color: white;
            font-weight: 500;
        }
        .outer tr td:first-child {
            width: 35px;
            padding: 0;
        }
        .outer tr td:nth-child(5) {
            text-align: right;
        }
    </style>

和...

    <div class="outer">
        <table>
            <tr>
                <td class="ltBlue">&nbsp;</td>
                <td class="ltBlue" colspan="4" style="text-align: center;">Overdue Books</td>
            </tr>
            <tr>
                <td class="ltBlue">&nbsp;</td>
                <th>Date</th>
                <th>Title</th>
                <th>Due</th>
                <th>Fine</th>
            </tr>
            <tr>
                <td class="ltBlue">&nbsp;</td>
                <td>01/20/2018</td>
                <td>Goodnight Moon</td>
                <td>01/14/2018</td>
                <td>$6.34</td>
            </tr>
            <tr>
                <td class="ltBlue">&nbsp;</td>
                <td>01/20/2018</td>
                <td>Goodnight Moon</td>
                <td>01/14/2018</td>
                <td>$6.34</td>
            </tr>
        </table>
    </div>

答案 1 :(得分:0)

这应该可以将您带到想要的地方。

<html lang="en">
<head>
<meta charset="utf-8" />

</head>
<body>
  <div id="table_2_border" style="width:300px;border-left:1px solid orange;border-top:1px solid black;border-right:1px solid pink;border-bottom:1px solid yellow">
  <table style="width:295px;margin-right:auto;margin-left:auto;border-left:1px solid green;border-top:1px solid blue;border-right:1px solid yellow;border-bottom:1px solid red">
            <tr>
                <th style="border-left:1px solid green;border-bottom:1px solid pink">One</th>
                <th style="border-left:1px solid red;">Two</th>
                <th style="border-left:1px solid blue;">Three</th>
                <th style="border-left:1px solid orange;">Four</th>
            </tr>
            <tr>
                <td>One info</td>
                <td>Two info</td>
                <td>Three info</td>
                <td>Four info</td>
            </tr>
          </table>
        </div>
</body>
</html>

如您所见,您可以将每个部分的样式设置为您选择的颜色。