ASP.NET+css漂亮的多行文本框

<!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>漂亮的滾動文本框</title>
    <style type="text/css">
        #txtArea
        {
            color: #990099;
            background-color:#FFFFE0;
            border: solid 2px black;
            width: 470px;
            height: 180px;
            overflow: scroll;
            scrollbar-face-color: #ffc0cb;
            scrollbar-shadow-color: #ffb6c1;
            scrollbar-highlight-color: #98fb98;
            scrollbar-3dlight-color: #ffb6c1; 
            scrollbar-darkshadow-color: #90ee90; 
            scrollbar-track-color: #ffdead; 
            scrollbar-arrow-color: #f5deb3;
          }
    </style>
</head>
<body>
    <textarea  id="txtArea">
    </textarea>

</body>
</html>


 

//預覽圖如下

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章