What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Top panel's menu border is not visible

Asto,

You will need to use two CSS border styles for adding vertical borders to either side of the layer.

Use border shorthand for each side. e.g. border-left: style width color; and/or border-right: style width color;"

HTML:
<div class="Top_panel">
    <div  class="menu"  style="border-left: solid 10px black; border-right: solid 10px black;">
        <h1><a href='#' target="_blank">menu</a></h1>
    </div>
</div>
 
Back
Top