返回设置边框,圆角......登陆

设置边框,圆角,阴影

JasonKim2019-03-14 23:28:57309

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>边框类型</title>

<style type="text/css">

.box{

width: 100px;height: 100px;border: 1px solid red;

}

.sha{

width: 100px;height: 100px;background: blue;

border: 1px solid #ccc;

/* 设置边框阴影 insert:设置向内阴影; */

box-shadow: 5px 10px 15px #ccc;

}


.yuan{

width: 100px;height: 100px;border: 1px solid #ccc;

/* 设置左上角*/

border-top-left-radius: 5px;

/*设置右小角*/

border-bottom-right-radius: 5px;

}

</style>

</head>

<body>

<!-- 给DIV加入边框  -->

<div class="box"></div>


<!-- 显示阴影 -->

<div class="sha"></div>


<!-- 边框圆角 -->

<div class="yuan"></div>


</body>

</html>


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送