2011-12-26 24 views
0

私はちょうどhtmlの初心者です。テキストエリアに背景画像を使用しようとしています。 Firefoxではうまく見えますが、インターネットエクスプローラでは見えません。テキスト領域の背景画像

私のhtmlコード

<textarea id="message" class="txt_area" 
    onFocus="remove_email('message','Message');" 
    onKeyPress="chgclr('message','Message')" 
    rows="" name="message" cols="">Message</textarea> 

マイCSS:Internet Explorerで

.txt_area{ 
    background-image:url(../images/textarea_normal.png); 
    background-color:transparent; 
    background-repeat:no-repeat; 
    color:#999999; 
    width:311px; 
    height:91px; 
    padding-left:35px; 
    padding-right:10px; 
    border:0px; 
    padding-top:10px; 
    padding-bottom:10px; 
    font-size:12px; 
} 
.txt_area:focus{ 
    background-image:url(../images/textarea_focus.png); 
    color:#000000; 
} 

私はテキスト領域にテキストを入力すると、背景画像は、コンテンツをスクロールします。私はie7を使用しています。どうすれば修正できますか?背景の添付ファイルのプロパティを追加すること

+0

この記事は、**背景、添付ファイルに...テキストエリア自体の背景画像は別の問題である... –

答えて