明天的明天 永远的永远 未知的一切 我与你一起承担 ??

是非成败转头空 青山依旧在 几度夕阳红 。。。
  博客园  :: 首页  :: 管理

Css :textarea 背景

Posted on 2010-03-23 18:35  且行且思  阅读(770)  评论(0)    收藏  举报

 

固定位置,不随滚动

代码
.postcomment ul ol.post_content{float:right; width:585px; margin:10px 10px 0 0; text-align:center; _text-align:right;}
    .postcomment ul ol.post_content textarea
{margin:0; width:545px; _width:540px; height:100px; border:1px solid #ccc; padding:10px; background:#fff url('postcommenttextareabg.png') no-repeat bottom right;}

 

 

 

滚动显示。。

代码
<style type="text/css">
#PubContent 
{
    display
:block;
    width
:545px;
    height
:100px;
    background
:url(textareabg.png) no-repeat 340px 65px;
    background-attachment
:fixed;
    padding
:5px;
    
} 
</style>