html - How to show border corners when a border is hidden -


so, have div 3 sides shown , bottom border set none. however, i'd keep bottom left , right corners visible. know of way this? thanks!

use css styles

<html> <div id="test" >something </div> </html>  <style> #test { border-top-style: hidden; border-right-style:solid; border-bottom-style:solid; border-left-style:solid;  } </style> 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -