how to create a table layout with float in css

后端 未结 2 500
忘掉有多难
忘掉有多难 2020-12-12 06:19

I want to create 3 divs inside outer div.The outer div is 72%.The three inner span with classes first,second,third should be 24%.

   
相关标签:
2条回答
  • 2020-12-12 06:57

    I would get rid of the spans and give the first second and third divs a class of "content" and then in your css put: .content { float: left; }.

    0 讨论(0)
  • 2020-12-12 07:01

    Scrap the span, assign a class to all 3 divs instead, then use float: on the class. If this doesn't work, you might have an easier time with display: table-.

    http://www.w3schools.com/cssref/pr_class_display.asp

    0 讨论(0)
提交回复
热议问题