boxshadow-border-radius-int.html (485B)
1 <html> 2 <style> 3 #boxShadow { 4 height: 210px; 5 width: 290px; 6 border-radius: 11px; 7 box-shadow: 0px 0px 2px graytext inset; 8 } 9 10 #leftCover { 11 width: 30px; 12 height: 300px; 13 background-color: white; 14 position: absolute; 15 left: 0px; 16 top: 0px; 17 } 18 19 #rightCover { 20 width: 20px; 21 height: 300px; 22 background-color: white; 23 position: absolute; 24 top: 0px; 25 left: 280px; 26 } 27 </style> 28 <body> 29 <div id="boxShadow">test</div> 30 <div id="leftCover"></div> 31 <div id="rightCover"></div> 32 </body>