Версия для печати темы
Нажмите сюда для просмотра этой темы в оригинальном формате
Форум программистов > Вёрстка веб-сайтов > Отступ сверху не отображается


Автор: ashenemy 22.10.2009, 16:58
есть разметка, на фивах, проблема в том что не могу поставить отступ между двумя строками

Код

    <div style="clear:both;">
        <div style="margin-right:350px; margin-bottom:20px;">
            <div style="background:rgb(96,93,92); position:relative; float:left; width:100%; height:110px;">
            
                
            </div>
            <div style="background:rgb(255, 0,35);  position:relative; float:left; width:350px; margin-right:-100%; height:110px;">
            
            </div>
        </div>
    </div>    
    <div style="margin-top:10px;clear:both;">
        <div style="margin-right:350px; margin-top:20px;">
            <div style="background:rgb(96,93,92); position:relative; float:left; width:100%; height:110px;">
            
                
            </div>
            <div style="background:rgb(255, 0,35);  position:relative; float:left; width:350px; margin-right:-100%; height:110px;">
            
            </div>
        </div>
    </div>


Есть ли возможность решить?
Заранее спасибо

Автор: ashenemy 22.10.2009, 17:18
сам разобрался)))
если кому интересено
Код

    <div style="clear:both; overflow: hidden;">
        <div style="margin-right:350px;">
            <div style="background:rgb(96,93,92); position:relative; float:left; width:100%; height:110px;">
            
                
            </div>
            <div style="background:rgb(255, 0,35);  position:relative; float:left; width:350px; margin-right:-100%; height:110px;">
            
            </div>
        </div>
    </div>    
    <div style="margin-top:10px;clear:both; overflow: hidden;">
        <div style="margin-right:350px;">
            <div style="background:rgb(96,93,92); position:relative; float:left; width:100%; height:110px;">
            
                
            </div>
            <div style="background:rgb(255, 0,35);  position:relative; float:left; width:350px; margin-right:-100%; height:110px;">
            
            </div>
        </div>
    </div>    

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)