html - Adjustment of Border in CSS -
i want border of div less width of div. how implement in css?
following image give more clarity:
this not possible plain css.
you use 2 div's effect.
<div class="outer"> <div class="inner"> text </div> </div> .outer { background-color:blue; padding:20px; width:200px; } .inner { border:solid 1px white; height:150px; color:white; }
Comments
Post a Comment