Different Css3 border style -
this "hard-coded" solution got work.
you have set maindiv
hiding left , right borders same body color on webpage.
body { background-color: #fff; } .maindiv { width: 500px; height: 50px; border: 1px solid #ccac00; position: relative; text-align: center; line-height: 3em; } .maindiv:after { content: ''; display: block; position: absolute; width: 0; height: 35px; top: 5px; left: -1px; border: 1px solid #fff; } .maindiv:before { content: ''; display: block; position: absolute; width: 0; height: 35px; top: 5px; left: 31.2em; border: 1px solid #fff; }
<div class="maindiv">lorem ipsum dolor sit amet</div>
jsfiddle if want edit liking.
Comments
Post a Comment