css - Align horizontally and vertically in a circle -
following example found on @ css tricks, i'm trying center align content inside circle container responsive. example doesn't seem able handle content, , breaks enter more few lines of text.
inside circle need have header , paragraph. there way set max width of content isn't placed outside circle when doesn't fit?
you can set top value accordingly in .content
code pen
edit
do changes:
.content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: table; } .content span{ display: table-cell; vertical-align: middle; text-align: center; }
now short text or long text centered now.
Comments
Post a Comment