Aligning a float:left div to center?

前端 未结 6 1752
我寻月下人不归
我寻月下人不归 2020-12-12 13:39

I want to have a group of images display horizontally across the page. Each image has a few link below it so I need to put a container around each image/link-group.

6条回答
  •  长情又很酷
    2020-12-12 13:47

    .contentWrapper {
        float: left;
        clear: both;
        margin-left: 10%;
        margin-right: 10%;
    }
    
    .repeater {
        height: 9em;
        width: 9em;
        float: left;
        margin: 0.2em;
        position: relative;
        text-align: center;
        cursor: pointer;
    }
    

提交回复
热议问题