Border line is missing?

pyeastinsnym

New Member
I can't figure out why the border isn't showing up. I have a main wrapper that encapsulates all the elements; I'm just making the background of each element a transparent white, and then adding a transparent white border to the wrapper. http://violetoeuvre.com/\[code\]/* Wrapper - Main *********/ .main_wrapper{ display:block; background: rgba(255,0,0,.5); width:1000px; height: 2000px; margin-left:18%; margin-top:7%; border:10px; border-color: rgba(255,255,255,.5);}\[/code\]html\[code\]<div class="main_wrapper"><!-- Logo _____________________________________________________--><div class="logo"> <a href="http://stackoverflow.com/questions/15582599/index.html"><img alt="emma carmichael" height="150px" src="http://stackoverflow.com/questions/15582599/images/Home/emma-logo.png"></a></div><!---Navigation Menu ______________________________________________--> <div id="main_menu" class="wrapper_nav_box"> <div class="nav_box"> <a href="http://stackoverflow.com/questions/15582599/writing.html">WRITING</a> </div> <div class="nav_box"> <a href="http://tumblr.com">BLOG</a> </div> <div class="nav_box"> <a href="http://stackoverflow.com/questions/15582599/contact.html">CONTACT</a> </div> </div>\[/code\]Any ideas?
 
Back
Top