Image en tekst centreren css

Status
Niet open voor verdere reacties.

Searche93

Gebruiker
Lid geworden
5 mei 2014
Berichten
13
Hallo mensen,

Ik heb net een mooi stukje css van internet gehaald en aangepast precies zoals ik het zelf wil.
De css is gemaakt voor knoppen op je website.

hier volgt de code
HTML:
@font-face {
        font-family: 'socialfont';
        src: url('http://mediaashley.com/MyFont.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;

}

body {
        background: #ddd;
        width: 100%;
        margin: 70px;
}

button {
    
        width: 200px;
        height: 200px;
        display: inline-block;
        font-family: Arial, "Helvetica", sans-serif;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        text-shadow: 1px 1px 0px #07526e;
        padding-top: 6px;
        margin-left: auto;
        margin-right :auto;
        position: relative;
        cursor: pointer;
        border: none;
        background: #109bce;
        border-radius: 5px;
        box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #07526e, 0px 10px 5px #999;
    }

button:active {
        top: 3px;
        box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #07526e, 0px 5px 3px #999;
}

button:before {
        font-family: 'socialfont';
        font-size: 24px;
        line-height: 1em;
        font-weight: normal;
        color: #fff;
        content:"\F020";
        width: 85px;
        height: 90px;
        display: block;
        position: absolute;
        padding-top: 10px;
        top: 10px;
        text-shadow: 1px 1px 2px #07526e;

}

button:active:before {
        top: 7px;
        font-size: 25px;
        text-shadow: 0px 3px 0px #07526e, 0px 5px 1px #07526e;
}

.twitter:before {
        content: url(images/settings.png) "Instellingen";
        
}
.in:before {
        content: url(images/rooster.png) "Rooster";
}
.vimeo:before{
        content:"\F024";
 
}


Ik kan de code wel redelijk begrijpen.
Wat ik alleen niet snap, is hoe ik de image en de tekst van bijvoorbeeld .twitter:content {} kan centreren.
Kan iemand mij hier aub mee helpen?
Alvast bedankt!
 
Status
Niet open voor verdere reacties.

Nieuwste berichten

Terug
Bovenaan Onderaan