Javascript
 Computer >> コンピューター >  >> プログラミング >> Javascript

JavaScriptを使用してユーザーが要素のサイズを変更できるかどうかを設定するにはどうすればよいですか?


サイズ変更を使用 要素がユーザーによってサイズ変更可能かどうかを設定するプロパティ。

次のコードを実行して、JavaScriptを使用してユーザーが要素のサイズを変更できるかどうかを設定できます-

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            width: 350px;
            overflow: auto;
            background-color: orange;
            border: 3px solid red;
         }
      </style>
   </head>

   <body>
      <p>Click to set the right position.</p>
      <button type = "button" onclick = "display()"> Set Right Position </button>

     <div id = "box">
        <p>This is a div. This is a div. This is a div. This is a div.<p>
        <p>This is a div. This is a div. This is a div. This is a div.<p>
        <p>This is a div. This is a div. This is a div. This is a div.<p>
     </div>
     
      <br>
      <br>
      <script>
      function display() {
         document.getElementById("box").style.resize = "both";
      }
      </script>
   </body>
</html>

  1. JavaScriptで要素の周りのアウトラインの幅を設定するにはどうすればよいですか?

    アウトラインの幅を設定するには、outlineWidthを使用します 財産。次のコードを実行して、JavaScriptで要素の周囲のアウトラインの幅を設定してみてください- 例 <!DOCTYPE html> <html>    <head>       <style>          #box {             width: 450px;     &n

  2. JavaScriptで要素の周りの輪郭の色を設定するにはどうすればよいですか?

    アウトラインの色を設定するには、outlineColorを使用します 財産。次のコードを実行して、JavaScriptを使用して要素の周囲の輪郭の色を設定してみてください。 例 <!DOCTYPE html> <html>    <head>       <style>          #box {             width: 450px;     &n