Problema con div - fill desde la derecha
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
#3
<div class="outer"> <div class="mainwrapper"> <div class="leftmargin"> </div> <div class="rightmargin"></div> </div> </div>
Y el siguiente código en tu CSS:
.outer { overflow-x: hidden; } .mainwrapper { width:950px; margin:0 auto; height:800px; position:relative; } .leftmargin { height:100%; width:99999px; position:absolute; left:100%; } .rightmargin { height:100%; width:99999px; position:absolute; right:100%; }