Bild abgerundete Ecke

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Bild abgerundete Ecke

by Anonymous » 12 Apr 2025, 05:44

Ich habe ein DIV, das ein Bild enthält. Ich möchte, dass diese DIV mit abgerundeten Ecken.

Code: Select all

    .thumb{
float: left;
overflow: hidden;
width: 230px;
height: 230px;
position: relative;
margin-right: 1px;
margin-bottom: 1px;
border-radius: 12px;
}
.thumb img {
max-width: 270px;
height: 270px;
left: -20px;
position: relative;
top: -20px;
width: 270px;
border-radius: 12px;
}

Top