我剛放置的圖像在我的主網頁的「關於我」欄目,我不能夠改變圖像的邊界半徑沒有所有的其他圖像變化以及..如何在不更改其他圖像的情況下更改側欄圖像的邊框半徑?
CSS:
.well .col-lg-12 .about, img {
border-radius: 50%;
}
HTML:
<div class="well">
<div class="row">
<div class="col-lg-12">
<img class="about" src= "https://storage.googleapis.com/simply-sturgis-website-files/Untitled.jpg" style="width:230px"></img>
<h3>Hello! I'm Jennifer.</h3>
<p>I'm a part time marketing assistant, part time blogger, who loves food, beauty, and fashion. But what 23 year old doesn't?!</p>
<a href="#">Read More</a>
</div>
</div>
這是我目前擁有的代碼的結果:
僅更改要更改圖像的類的邊框半徑。 –
如果樣式對於一個圖像是唯一的,則給它一個「id」並相應地設置樣式。 –
選擇器中的逗號是問題;它說要定位所有圖像。如果你想要那個特定的圖像,你的選擇器應該是'.well .col-lg-12 img.about' – sbeliv01