Merhaba dostlar. bir eticaret sitesi için şu şekilde bir banner alanı çıkartacağım. https://prnt.sc/svst4u

Bildiğim tüm kodları uyguladım ama hâlâ aynı hatayı alıyorum görünüm bu şekilde kalıyor. https://prnt.sc/svsqyc

Nerede hata yapıyorum inceler misiniz.?

Kod Yapısı;
<style type="text/css">

#row1{
    background-color: blue;
}

.div1{
    width:350px;
    height:350px;
    border: #CCC solid 1px;
    background-color: red;
    margin-right:10px;
    margin-left:4px;
}
.div2{
    fload:left !important;
    width:100px;
    height:100px;
    border: #ccc solid 1px;
    margin-right: 2px;
    margin-left: 2px;
    background-color: yellow;
}
.div3{}
</style>
<div id="row1">
    <div class="div1">alan 1</div>
    <div class="div1">
        <div class="div2">alan 2</div>
        <div class="div2">alan 3</div>
    </div>
</div>


[B][/B]