CSS圆形边框做业

Original 2019-03-13 18:34:47 194
abstract:<!DOCTYPE html><html><head>    <title>边框</title>    <style type="text/css" media="screen">        .box{w

<!DOCTYPE html>

<html>

<head>

    <title>边框</title>

    <style type="text/css" media="screen">

        .box{width:200px;height:200px;border:1px solid #ccc;background: #ccc;border-radius:50%;box-shadow:10px 10px 10px}

    </style>

</head>

<body>

    <div class=box>


    </div>

</body>

</html>


Correcting teacher:韦小宝Correction time:2019-03-14 09:12:36
Teacher's summary:css实现边框样式可以有多种样式的 没事多去实现几种

Release Notes

Popular Entries