CSS horizontal table cell spacing: how?

后端 未结 9 2195
悲哀的现实
悲哀的现实 2021-02-03 19:12

Hopefully this is an easy one but I have not found a solution. I want to put space between columns on a table.

Example

| Cell |<- space ->| Cell |         


        
9条回答
  •  耶瑟儿~
    2021-02-03 19:55

    You could also consider using a series of fixed width divs floated left with margins. This might give you a bit more control over the element styling.

    .row div {
         margin-right: 10px;
         float: left;
         width: 50px;
    }
    
        
    Cell One
    Cell Two
    Cell Three

提交回复
热议问题