当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <img> vspace属性用法及代码示例


HTML <img> vspace属性用于指定图像底部和顶部的空白数。

用法:

<img vspace="pixels">

属性值:


  • pixels:它以像素为单位指定图像顶部和底部的空白数量。

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML img vspace Attribute  
    </title>  
      
    <style> 
        h1, h2 { 
            color:green; 
            text-align:center; 
        } 
        h3 { 
            font-weight:bold; 
        } 
    </style> 
</head>  
  
<body>  
  
    <h1 style="color:green;">  
        GeeksforGeeks  
    </h1>  
  
    <h2>HTML <img> vspace Attribute</h2> 
      
    <h3>Image without vspace Attribute</h3> 
      
    <p> 
        <img id="myImage" src=  
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
            alt="Submit" width="42"
            height="42" align="middle"/> 
        It is a computer science portal for geeks 
    </p> 
      
    <h3>Image with vspace Attribute</h3> 
      
    <p> 
        <img id="myImage" src=  
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
            alt="Submit" vspace = "60" width="42" height="42"
            align="middle"/> 
        It is a computer science portal for geeks 
    </p> 
</body>  
  
</html>                    

输出:

支持的浏览器:下面列出了HTML <img> vspace属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera


相关用法


注:本文由纯净天空筛选整理自hritikbhatnagar2182大神的英文原创作品 HTML | <img> vspace Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。