Text within circle div. Div size adjusted to content

前端 未结 5 1119
庸人自扰
庸人自扰 2020-12-19 04:52

I want to create a circle div with text in (not only one line). This is the kind behavior I want:

\"http://i.img

5条回答
  •  自闭症患者
    2020-12-19 05:37

    Pure CSS: http://jsfiddle.net/MrPolywhirl/P55FL/

    div {
        background-color:#EEE;
        border-style:solid;
        border-color:#000;
        width:200px;
        height:200px;
        border-radius:50%;
        padding:0 4%;
        overflow:hidden;
        display:table-cell;
        text-align:center;
        vertical-align:middle;
    }
    

提交回复
热议问题