Center two divs in the middle of a wrapper

前端 未结 2 2094
忘掉有多难
忘掉有多难 2021-02-05 14:57

I have this CSS problem:

I am div 1
I am div 2
2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-05 15:19

    text-align:center; would center this for you:

    #wrap{
      width:50%;
      border: 1px solid #000;
    }
    
    #left, #right{
      text-align: center;
    }
    

    Demo: http://jsfiddle.net/DbNs6/1/

提交回复
热议问题