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


HTML Pre width用法及代码示例


HTML DOM Pre width属性用于设置或返回<pre>元素的width属性的值。

用法:

  • 它返回一个预宽度属性。
    preObject.width
  • 用于设置预宽度属性。
    preObject.width = "pixel";

属性值:



  • pixels:它以像素为单位设置预定文本的宽度。
  • %:它以百分比(%)的形式设置预定文本的宽度。

返回值:它返回一个表示<pre>元素宽度的数值。

范例1:本示例返回pre元素的width属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>DOM pre width Property</title>  
</head>  
  
<body>  
    <center>  
        <h1>GeeksForGeeks</h1>  
        <h2>DOM pre width Property</h2>  
          
        <!-- Assigning id to pre tag -->
        <pre id="GFG" width="50%">  
            GeeksforGeeks  
            A Computer Science Portal For Geeks  
        </pre>  
          
        <button onclick="myGeeks()">  
            Submit  
        </button>  
          
        <p id="sudo"></p> 
          
        <script>  
            function myGeeks() {  
                  
                // Accessing pre tag.  
                var g = document.getElementById( 
                            "GFG").width; 
                  
                document.getElementById( 
                        "sudo").innerHTML = g;  
            }  
        </script> 
    </center>  
</body>  
  
</html>

输出:

  • 在单击按钮之前:
  • 单击按钮后:

范例2:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>DOM pre width Property</title>  
</head>  
  
<body>  
    <center>  
        <h1>GeeksForGeeks</h1>  
        <h2>DOM pre width Property</h2>  
          
        <!-- Assigning id to pre tag -->
        <pre id="GFG" width="50%">  
            GeeksforGeeks  
            A Computer Science Portal For Geeks  
        </pre>  
          
        <button onclick="myGeeks()">  
            Submit  
        </button>  
          
        <p id="sudo"></p> 
          
        <script>  
            function myGeeks() {  
                  
                // Accessing pre tag.  
                var g = document.getElementById( 
                            "GFG").width = "200px"; 
                              
                document.getElementById( 
                        "sudo").innerHTML = g;  
            }  
        </script>  
    </center>  
</body>  
  
</html>

输出:

  • 在单击按钮之前:
  • 单击按钮后:



相关用法


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