<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>圆角边框及阴影</title>
<style>
div{
width: 100px;
height: 50px;
background: red;
/* 圆角边框
左上 右上 右下 左下--顺时针
圆角=半径!
*/
margin: 30px;
border-radius: 50px 50px 0px 0px;
/* 盒子阴影:box-shadow 模糊半径 颜色*/
box-shadow: 10px 10px 100px yellow;
}
img{
border-radius: 81px 81px;
box-shadow: 10px 10px 81px yellowgreen;
}
</style>
</head>
<body>
<div></div>
<img src="../resource/image/face.jpg" alt="">
</body>
</html>
<!-- 经验分享
模板网站:源码之家、飞冰、Layui、Element-ui
-->