Two css3 columns text with an image in middle

前端 未结 1 1944
野的像风
野的像风 2021-01-19 04:08

I\'d like to achieve this result

\"enter

there are many tutorial around like t

相关标签:
1条回答
  • 2021-01-19 04:43

    Here you are:
    http://jsfiddle.net/aX47K/

    css:

    .column{  
       width:300px;  
       float:left;  
       margin-right:20px;  
    } 
    
    .column div{  
      width:200px;  
      height:210px;  
    }
    
    #col-1 div{
      float:right;
    }
    #col-2 div{
     float:left;
    } 
    
    img#center-image{  
      position:absolute;  
      left:110px;
    }
    
    0 讨论(0)
提交回复
热议问题