Make bottom left and right round corner - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Column Layout

Description

Make bottom left and right round corner

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">

.dc-slick {<!--   www  .  ja  va  2 s .co m-->
   border: 3px solid #F6C;
   right: 0px;
   left: 0px;
   position: fixed;
   border-bottom-left-radius: 30px 30px;
   border-bottom-right-radius: 30px 30px;
   z-index: 10001;
   margin-top: 0px;
}
.dc-slick-content {
   background: black;
   color:white;
   z-index:9999;
   width: 100%;
   height: 200px;
   border-bottom-left-radius: 30px 30px;
   border-bottom-right-radius: 30px 30px;
}


      </style> 
 </head> 
 <body> 
  <div class="dc-slick"> 
   <div class="dc-slick-content">
     test 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials