css如何為圖片設定圓角

nt1979發表於2021-09-11

在css中,可以使用border-radius屬性為圖片設定圓角,只需要給圖片元素設定“border-radius:數值;”樣式即可。為該屬性提供一個值,就能同時設定四個圓角的半徑,所有合法的CSS度量值都可以使用。

css如何為圖片設定圓角

本教程操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。

CSS3圓角只需設定一個屬性:border-radius(含義是"邊框半徑")。你為這個屬性提供一個值,就能同時設定四個圓角的半徑。所有合法的CSS度量值都可以使用:em、ex、pt、px、百分比等等。

例子:

<!DOCTYPE html>
<html>
<head>
<base target="_self">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache,must-ridate">
<meta http-equiv="expires" content="0">
 
<title>設定背景圓角</title>
<link rel="stylesheet" type="text/css" href="bootstrap/bootstrap.min.css" />
<style type="text/css">
.normal{
  background-image: url(images/rest.png);
  width: 215px;
  height: 215px;
  border-radius: 50%;
  background-size: 215px;
  background-repeat: no-repeat;
  background-position-y: 9%;
}
</style>
</head>
<body>
<!-- 
原圖尺寸是:599*531px的
 -->
<div></div>
 
<script type="text/javascript" src="jquery/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap/bootstrap.min.js"></script>
</body>
</html>

原圖:

設定背景之後的效果:

推薦學習:

以上就是css如何為圖片設定圓角的詳細內容,更多請關注php中文網其它相關文章!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4822/viewspace-2827758/,如需轉載,請註明出處,否則將追究法律責任。

相關文章