html表單中textarea屬性怎麼固定大小?textarea屬性執行個體介紹

來源:互聯網
上載者:User
本篇文章主要的介紹了關於HTML表單中的textarea屬性的固定的大小使用的文本域,可以用作網頁的留言框,下方還有具體的表單頁面詳解,接下來就讓我們一起看這篇關於HTML表單中的textarea屬性的文章。

首先我們先看看HTML表單中的textarea屬性固定大小的使用:

HTML標籤textarea在大部分瀏覽器中只要指定行(rows)和列(cols)屬性,就可以規定textarea的尺寸,但大小在瀏覽器中(firefox、chrome)還是可以調節的,使用CSS的height和width屬性效果和rows cols定義的效果相同,可以拖動右下角表徵圖改變大小。但是過分拖動大小會影響頁面配置,使頁面變得不美觀。可以通過添加如下樣式禁用拖動,固定大小:

<html><head></head><form> <textarea id='memo'style="min-height:50px;min-width:70px;max-height:50px;max-width:70px;">這是topic.alibabacloud.com的留言框 </textarea></form></html>

這個代碼的在瀏覽器中顯示如下:

,這就是留言框的固定大小的做法,還保留著右下角的拖動表徵圖,但是沒用,根本拖不動,這就固定住了。

HTML表單中的textarea屬性本來就是用作多行文本域的屬性,現在要仔細說說,當然得說,文本域的使用了。我們來看看一個頁面的代碼:

<form action="url地址" method=“get/post” name="表單名稱"><p>文字框</p>使用者名稱:<input type="text" name="username"><p>密碼框(顯示為星號和小圓點)</p>密碼:<input type="password" name="password"><p>單選框</p>單選:<input type="radio" name="sex" value="nan">男      <input type="radio" name="sex" value="nv">女<p>預設選項框</p>多選:<input type="checkbox" name="">吃飯      <input type="checkbox" name="" checked=“checked”>睡覺      <input type="checkbox" name="">打豆豆      <input type="checkbox" name="">喝水<p>留言框</p><textarea id='memo' style="min-height: 50px;min-width: 70px;max-height: 50px; max-width: 70px;" ></textarea><p>提交按鈕</p>提交:<input type="submit" name=""><p>重設按鈕</p>重設:<input type="reset" name=""></form>

這就是表單代碼的大部分內容了,最後的留言框是我們今天的文章所描述的:

如上就是關於文本域textarea屬性的用法了,更多的可以大家去發現,發現了記得來這下方留言哦

想學更多就上topic.alibabacloud.com,一個滿足你所有想學編程的網站。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.