左边竖条的实现方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了左边竖条的实现方法相关的知识,希望对你有一定的参考价值。

一:border

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            *{margin:0px;padding:0px;}
            .wrap{width:500px;height:200px;margin:100px auto;}
            .wrap .con{width:400px;height:60px;border-left:5px solid purple;background: #ccc;}
        </style>
    </head>
    <body>
            <div class="wrap">
                <div class="con"></div>
            </div>
    </body>
</html>

 

二:伪类

 

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            *{margin:0px;padding:0px;}
            .wrap{width:500px;height:200px;margin:100px auto;}
            .wrap .con{width:400px;height:60px;background: #ccc;}
            .wrap .con:after{display: block;content:"";width:5px;height:60px;background: purple;}
        </style>
    </head>
    <body>
            <div class="wrap">
                <div class="con"></div>
            </div>
    </body>
</html>

 

三:box-shadow

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            *{margin:0px;padding:0px;}
            .wrap{width:500px;height:200px;margin:100px auto;}
            .wrap .con{width:400px;height:60px;background: #ccc;box-shadow:-5px 0px 0px purple;}
        </style>
    </head>
    <body>
            <div class="wrap">
                <div class="con"></div>
            </div>
    </body>
</html>

四:filter:drop-shadow

 

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            *{margin:0px;padding:0px;}
            .wrap{width:500px;height:200px;margin:100px auto;}
            .wrap .con{width:400px;height:60px;background: #ccc; -webkit-filter:drop-shadow(-5px 0 0 deeppink);}
        </style>
    </head>
    <body>
            <div class="wrap">
                <div class="con"></div>
            </div>
    </body>
</html>

 

五:渐变

 

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            *{margin:0px;padding:0px;}
            .wrap{width:500px;height:200px;margin:100px auto;}
            .wrap .con{width:400px;height:60px;background:-webkit-linear-gradient(left,purple 0px,purple 5px,#ccc 5px)}
        </style>
    </head>
    <body>
            <div class="wrap">
                <div class="con"></div>
            </div>
    </body>
</html>

 

以上是关于左边竖条的实现方法的主要内容,如果未能解决你的问题,请参考以下文章

左边竖条

左侧竖条导航栏点击出现效果的实现

Lodop条形码竖条和值右端不对齐的解决方法

有趣的css面试题

Sublime Text3自定义代码片段

ASP.net MVC 代码片段问题中的 Jqgrid 实现