input { font-size:20px } #aa123 table { font-size:26px; -moz-border-radius: 25px; -webkit-border-radius: 25px; background-color: rgba(255, 255, 0, 0.3); border-radius: 25px; height: 125px; text-align: center; width: 125px; }

<input type="text" size="40" value="123456" />

<input onclick="this.select()" size="40" type="text" value="123456" />

<input onmouseover="this.select()" size="40" type="text" value="123456" />;


<input onchange="this.select()" onclick="this.select()" size="40" type="text" value="123456" />

<input size="40" type="text" value="123456" maxlength="10"/>

<input size="40" type="number" value="123456"  />

<form>
 <input type="text">
 <input type="reset" value="清除表單">
</form>
  


<input size="40" type="password" value="123456"  />

<input onfocus="this.value='焦點在此'"
       onblur="this.value='焦點移開'"  size="40" type="text" value="焦點移開" />

<input  size="40" type="text" value="readonly" readonly />

<input disabled="disabled"  size="40" type="text" value="disabled" />

<input type="color" >

<input type="date">

<input type="datetime-local">

<form action="demo_form.asp">
E-mail: <input type="email" />
  <input type="submit" />
</form>
E-mail:


<input type="month" >

<form action="demo_form.asp">
Quantity (between 1 and 5): <input max="5" min="1" name="quantity" type="number" />
  <input type="submit" />
Quantity (between 1 and 5):


Points: 0<input type="range" name="points" min="1" max="100">100 Points: 0100

<input type="time" >

<input type="week" >
文章標籤

c8cc168 發表在 痞客邦 留言(0) 人氣(0)