How can I put a vertical line down the center of a div?

后端 未结 8 1914
陌清茗
陌清茗 2020-12-24 00:59

How do I put a vertical line down the middle of a div? Maybe I should put two divs inside the div and put a left border on one and a right border on the other? I have a DIV

8条回答
  •  暖寄归人
    2020-12-24 01:54

    Here's a more modern way to draw a line down a div. Just takes a little css:

    .line-in-middle {
        width:400px;
        height:200px;
    	  background: linear-gradient(to right, 
    	                              transparent 0%, 
    	                              transparent calc(50% - 0.81px), 
    	                              black calc(50% - 0.8px), 
    	                              black calc(50% + 0.8px), 
    	                              transparent calc(50% + 0.81px), 
    	                              transparent 100%); 
    	}

    Works in all modern browsers. http://caniuse.com/#search=linear-gradient

提交回复
热议问题