Quantcast
Channel: html – Tech ABC to XYZ
Viewing all articles
Browse latest Browse all 30

Css/Html : Automatically resizing image which is in a circle [ANSWERED]

$
0
0

Css/Html : Automatically resizing image which is in a circle

Asked By: wawanopoulos
Originally Asked On: 2014-01-02 08:34:04
Asked Via: stackoverflow

I would like to put an image into a circle.

My code works fine, but if the image is so big, image is not resizing and i don’t see anything in the circle.

How can i automatically resize the image to put it into my circle ?

Here is the html code :

    <div class="roundedImage" style="background: url(img/desktop/personne.jpg) no-repeat 0px 0px;">
&nbsp;
</div>

And here is the CSS code :

.roundedImage {
    overflow:hidden;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
    width:90px;
    height:90px;
}

And now, here is the result :

enter image description here

He received 2 answers
eventually accepting:

nkmol’s answer to

Css/Html : Automatically resizing image which is in a circle

To let the background-image fully fill the space that is available you can use background-size: cover;:

.roundedImage {
    background: url(http://placehold.it/50x50);
    background-repeat: no-repeat;
    background-size: cover;

    overflow:hidden;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
    width:90px;
    height:90px;
}

Note that i’ve added the inline style in the css code.

jsFiddle

If the selected answer did not help you out, the other answers might!

All Answers For: Css/Html : Automatically resizing image which is in a circle

nkmol’s answer to

Css/Html : Automatically resizing image which is in a circle

To let the background-image fully fill the space that is available you can use background-size: cover;:

.roundedImage {
    background: url(http://placehold.it/50x50);
    background-repeat: no-repeat;
    background-size: cover;

    overflow:hidden;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
    width:90px;
    height:90px;
}

Note that i’ve added the inline style in the css code.

jsFiddle

morefromalan’s answer to

Css/Html : Automatically resizing image which is in a circle

Use CSS property background-size to set the size of the image set as a background in your div:

.roundedImage {
    overflow:hidden;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
    width:90px;
    height:90px;
    background-size:90px 0px; 
}

Of course, you should really check out the original question.

The post Css/Html : Automatically resizing image which is in a circle [ANSWERED] appeared first on Tech ABC to XYZ.


Viewing all articles
Browse latest Browse all 30

Trending Articles