Jump to content
  • 0

Как закруглить DIV с картинкой внутри?


HappyUser
 Share

Question

Подскажите плиззз есть DIV внутри картика, как закруглить уголки? Если точно только один нижние левый угол? Заранее спасибо! =)

Вот такой код не работает, если изнутри убираю картинку то уголок закругляется...

<div style="float:left; height:114px; width:303px; border-radius:0 0 0 25px; background:grey;">

<img src="Pics/LogoBottom.jpg" />

</div>

=) Возможно ли вообще его как то закруглить чтобы было красиво т.е. под дивом фон сайта )

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Простите мою глупость Новичка но если прописать это в файле css то все картинки на страничке получаются с закругленным уголком снизу слева...

А как сделать это для одной картинки на страничке? =)

СПС!

Edited by HappyUser
Link to comment
Share on other sites

  • 0

Добавить нужному DIV класс

HTML


<div class="someClass">
<img src="Pics/LogoBottom.jpg" />
</div>

CSS


.someClass{
overflow: hidden;
float:left;
height:114px;
width:303px;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-left-radius: 15px;
background:grey;
}

Edited by kamaz6141
Link to comment
Share on other sites

  • 0

Добавить нужному DIV класс

HTML


<div class="someClass">
<img src="Pics/LogoBottom.jpg" />
</div>

CSS


.someClass{
overflow: hidden;
float:left;
height:114px;
width:303px;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-left-radius: 15px;
background:grey;
}

Понял СПС огроменное щас попробую =)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy