How can I set a css border on one side only?

前端 未结 6 1899
既然无缘
既然无缘 2021-01-31 00:59

For a given div I would like to only display a border on the left, right, top, or bottom side.

Currently I have the following, which puts a border on all s

6条回答
  •  爱一瞬间的悲伤
    2021-01-31 01:49

        div{
        border-left:solid red 3px;
        border-right:solid violet 4px;
        border-top:solid blue 4px;
        border-bottom:solid green 4px;
        background:grey;
        width:100px; height:50px
    }
    

    DEMO

提交回复
热议问题