HTML CSS examples for CSS Widget:Border Style
Make the border transparent
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> @charset "UTF-8"; html,body { Background-color:rgba(255,165,0,0.5); } #white_box {<!--from ww w .j av a 2 s . c o m--> position:absolute; min-width:90%; max-width:90%; margin:0 auto; height:92%; top:0%; left:5%; right:5%; background:white; z-index:1; width:80%; border:5px #0F0 transparent; } </style> </head> <body> <link href="stylesheet.css" rel="stylesheet" type="text/css"> <div id="logo"></div> <div id="bar_outside"></div> <div id="box1"></div> <div id="middle_box"></div> <div id="home"></div> <div id="about"></div> <div id="service"></div> <div id="safehands"></div> <div id="spz"></div> <div id="copyright"></div> <div id="white_box"></div> </body> </html>