欧美激情网,国产欧美亚洲高清,欧美屁股xxxxx,欧美群妇大交群,欧美人与物ⅴideos另类,区二区三区在线 | 欧洲

知識(shí)學(xué)堂
  • ·聯(lián)系電話:+86.023-75585550
  • ·聯(lián)系傳真:+86.023-75585550
  • ·24小時(shí)手機(jī):13896886023
  • ·QQ 咨 詢:361652718 513960520
當(dāng)前位置 > 首頁(yè) > 知識(shí)學(xué)堂 > 網(wǎng)站建設(shè)知識(shí)
DIV+CSS網(wǎng)頁(yè)設(shè)計(jì)實(shí)例:DIV實(shí)現(xiàn)網(wǎng)頁(yè)Textarea效果
更新時(shí)間:2012-05-18 | 發(fā)布人:本站 | 點(diǎn)擊率:641

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
<meta http-equiv="content-type" content="text/html; charset=gbk">
 
<head>
 
<title>DIV+css完美仿真Textarea</title>
 
<style type="text/css">
 
h1        {font:bold 1.2em/1.6em arial;margin:4px 0;padding:4px 0;}
 
h2        {font:normal 1.1em/1.5em arial;margin:14px 0 0 0;padding:4px 0;}
 
div, p {font: normal 1em/1.3em arial;}
 
textarea.terms {
 
        width:600px;
 
        height:200px;
 
        border:1px solid #ccc;
 
        background:#f2f2f2;
 
        font:normal 11px/15px arial;
 
        padding:6px;
 
        color:#333;
 
}
 
div.terms {
 
        width:600px;
 
        height:200px;
 
        border:1px solid #ccc;
 
        background:#f2f2f2;
 
        padding:6px;
 
        overflow:auto;
 
}
 
div.terms p,
 
div.terms li {font:normal 11px/15px arial;color:#333;}
 
div.terms h3 {font:bold 14px/19px arial;color:#000;}
 
div.terms h4 {font:bold 12px/17px arial;color:#000;}
 
div.terms strong {color:#000;}
 

</style>
 
</head>
 

<body>
 

<h1>這可是用DIV實(shí)現(xiàn)的哦!</h1>
 

<div class="terms">
 
<h3>Terms and Conditions</h3>
 
<h4>General</h4>
 
<p>Servicing servicing resistor <strong>video computer</strong> element transponder prototype analog solution mainframe network. Solution video debugged feedback sampling extended, infrared, generator generator. </p>
 
<ul>
 
<li>list item number one</li>
 
<li>list item number two</li>
 
<li>list item number three</li>
 
</ul>
 

<p>大家都見到很多網(wǎng)站有這種功能吧?就是點(diǎn)擊登錄后網(wǎng)頁(yè)并沒有刷新,但卻彈出一個(gè)登錄框,輸入帳號(hào)后又緊接著不刷新網(wǎng)頁(yè)就可登錄,這種功能對(duì)提高用戶體驗(yàn)非常有用,現(xiàn)在做了一個(gè)簡(jiǎn)單點(diǎn)的登錄框,主要是使用了jQuery框架,個(gè)人感覺這是個(gè)AJAX最好用的框架。</p>
 
<h4>Fees</h4>
 
<p>Reflective backbone log transmission cable logarithmic mainframe. Messaging backbone debugged feedback development phaselock metafile n-tier coordinated, cable coordinated coordinated in. <strong>Analog device</strong> transistorized, sequential transistorized with scalar normalizing. Services software pc, femtosecond bypass scalar data element extended cascading capacitance harmonic. </p>
 
</div>
 
</body>
 
</html>