CSS實現的div仿製Textarea效果

來源:互聯網
上載者:User
<!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 ">
<head>
<title>CSS實現的仿Textarea效果</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<!--把下面代碼加到<head>與</head>之間-->
<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;
}
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>
<!--把下面代碼加到<body>與</body>之間-->
<h1>這可是用DIV實現的哦!</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><a href=" http://www.baidu.com">list item number one</a></li>
<li>list item number two</li>
<li>list item number three</li>
</ul>
<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. Mainframe phase cache anomoly feedback servicing harmonic. Services software pc, femtosecond bypass scalar data element extended cascading capacitance harmonic. Adaptive plasma bypass supporting cascading deviation system pulse broadband bridgeware.</p>
</div>
</body>
</html>

overflow

visible overflow 預設值。內容不會被修剪,會呈現在元素框之外。

hidden 內容會被修剪,並且其餘內容是不可見的。

scroll 內容會被修剪,但是瀏覽器會顯示捲軸以便查看其餘的內容。

auto 如果內容被修剪,則瀏覽器會顯示捲軸以便查看其餘的內容。

inherit 規定應該從父元素繼承 overflow 屬性的值。 

相關文章

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.