我想使用特定的图像边界半径,我如何能在CSS中做到这一点?当我尝试使用border radius属性时,它会将它应用于该页上的所有图像,而当我通过类使用它时,它不会工作。请看这个密码告诉我。

#radiusimage{
  border-radius: 25px;
}

<img class="radiusimage" src="https://bestforandroid.com/wp-content/uploads/2016/10/music-apps-1-300x150.png" alt="music-apps" width="300" height="170" />

最佳答案

在使用classHTML属性时,需要在CSS中使用.

.radiusimage {
    border-radius: 25px;
}

<img class="radiusimage" src="https://bestforandroid.com/wp-content/uploads/2016/10/music-apps-1-300x150.png" alt="music-apps" width="300" height="170" />

如果要在CSS中使用#,请将HTML属性更改为id
#radiusimage {
    border-radius: 25px;
}

<img id="radiusimage" src="https://bestforandroid.com/wp-content/uploads/2016/10/music-apps-1-300x150.png" alt="music-apps" width="300" height="170" />

关于html - 如何为特定的div设置CSS样式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40231638/

10-10 18:49
查看更多