Create Panel with title and line - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Panel

Description

Create Panel with title and line

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--   w  w  w . jav a 2 s. c om-->
 <body> 
  <div style="height: 250px;width: 300px;border: 1px solid #99999A;"> 
   <div style="padding: 0.7em 0.4em 0.2em 0.4em;height: 30px;border-bottom:1px solid #99999a; width:90%; margin:0 auto;">
     Title 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials