html画特殊图形(待修改)

1.画圆


<html>
    <head>
        <style>
        *{margin:0;padding:0;}
        .box{margin:50px auto;width:100px;height:100px;border-radius:50%;background:pink;}
        style>
    head>
<body>
    <div class="box">div>
body>
html>

2.画梯形


<html>
    <head>
        <style>
        *{margin:0;padding:0;}
        .box{margin:50px auto;width:200px;height:100px;border-radius:50%;background:pink;}
        style>
    head>
<body>
    <div class="box">div>
body>
html>

3.画三角形


<html>
    <head>
        <style>
        .box{border:10px solid transparent;border-right:10px solid #56a9d3;}
        style>
    head>
<body>
    <div class="box">div>
body>
html>

4.画梯形

你可能感兴趣的:(html画特殊图形(待修改))