1. 程式人生 > >border-style之dotted顯示一個圓

border-style之dotted顯示一個圓

dotted邊框:

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>製作我的第一個網頁</title>
        <style type="text/css">
            .dotted{
                width:150px;
                height
:150px
; border:149px dotted red; }
</style> </head> <body> <div class="dotted"></div> </body> </html>

效果:
這裡寫圖片描述
改進後:

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type"
content="text/html; charset=utf-8">
<title>製作我的第一個網頁</title> <style type="text/css"> .box{ width:150px; height:150px; overflow:hidden; } .dotted{ width:100%; height
:100%
; border:149px dotted red; }
</style> </head> <body> <h1>Hello World</h1> <div class="box"> <div class="dotted"></div> </div> </body> </html>

效果如圖:
這裡寫圖片描述