當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML applet align用法及代碼示例


HTML applet align屬性用於指定<applet>元素或applet元素內存在的內容的對齊方式。

用法:

<applet align="left | right | center | justify";>

屬性值:



  • left:它將內容設置為left-align。
  • right:它將內容設置為right-align。
  • center:我將內容元素設置為中心。
  • justify:它將內容設置為合理位置。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | applet align Attribute 
    </title>         
</head> 
  
<body> 
    <applet code="HelloWorld" alt="GeeksForGeeKs"
            align="right" width=200 height=60
            name="geeks">  
    </applet> 
      
    <h1> 
        HTML applet align attribute 
    </h1> 
      
    <h2>Hello GeeksForGeeks</h2> 
      
    <p> 
        a computer science 
        portal for Geeks  
    </p> 
</body>  
  
</html>          

輸出:

支持的瀏覽器:下麵列出了HTML applet align屬性支持的瀏覽器:

  • Firefox
  • Safari



相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | applet align Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。