边框的样式设置

Original 2019-05-09 15:10:03 173
abstract:<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>边框</title>    <style>    
<!DOCTYPE html>
<html>
<head>
   <meta charset="UTF-8">
   <title>边框</title>
   <style>
   .xw {
       width: 200px;
       height: 100px;
       background-color: blanchedalmond;
       border: 1px solid darkred;
       border-radius: 50%;
   }
   .chj {
       width: 200px;
       height: 100px;
       background-color: forestgreen;
       border: 1px double saddlebrown;
       border-radius: 80%;
   }
   .zfy {
       width: 200px;
       height: 100px;
       background-color: darkred;
       border: 1px double purple;
       border-radius: 20%;

   }
 
   </style>

</head>
<body>
<div></div>

<div></div>
  <button>登录></button>
  <div></div>

</body>


Correcting teacher:查无此人Correction time:2019-05-10 13:56:04
Teacher's summary:完成的不错,边框做的好,页面就会很漂亮。继续加油。

Release Notes

Popular Entries