码迷,mamicode.com
首页 > Web开发 > 详细

2016 - 1- 22 img tag and the lists (intro to HMTL&CSS)

时间:2016-01-23 01:18:53      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

1 :The img tag 

   img tag allows put some img file into page. just like :

<a href = "me.png">
    <img
        src = "me.png"
        width = "50%"
     />
</a>

  And the  " src = "me.png" " lets brows knows where the img in computer.The " width = 50% "tells that the img‘s width is whole page‘s with 50%.

And if zoom the page u would find the img‘s size change too! But if u set like " width = 150px ".It will not! 

 

2.The tag for listing 

 1.orderd list 

<ol>
    <li>133.My street</li>
    <li>My town</li>
    <li>My nation</li>
</ol>

 2. Unformatted list 

<ul>
    <li>133.My street</li>
    <li>My town</li>
    <li>My nation</li>
</ul>

 

2016 - 1- 22 img tag and the lists (intro to HMTL&CSS)

标签:

原文地址:http://www.cnblogs.com/BJTUzhengli/p/5152664.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!