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.

code pen example

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.

check this


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -