11 lines
180 B
CSS
11 lines
180 B
CSS
|
#personne {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-around;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
img{
|
||
|
width:100px;
|
||
|
clip-path:ellipse(50% 50%);
|
||
|
}
|