1. 程式人生 > >python 學習總結6 前端學習2

python 學習總結6 前端學習2

blog href utf-8 總結 head 默認 多余 har pytho

html與css的繼續學習

1.css 書寫可以在style處先設置一個標簽的樣式 例如 這個將圖片的邊框設置為0 為多余的邊框,默認的img標簽有一個1px的邊框:

<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        img{
            border: 0;
        }
    </style>
</head>
<body>
    <a href="http://www.oldboyedu.com
" >asdf</a> <a href="http://www.oldboyedu.com"> <img src="1.jpg" style="width: 200px;height: 300px;"> </a> </body>

python 學習總結6 前端學習2