画像をテキストボックスとして使用しdiv
ていますが、その画像には一種の境界線/エンボスが含まれているため、テキストがその部分に重なって見た目が悪いので、テキストを15ピクセル右に配置したいと思いますが、試してもうまくいきません仕事
HTML:
<div id=textarea>
<h2> Tardis -time music festival </h2>
<p>
<br/> Hello fellow time travelers,
<br/> Do you enjoy Music as much as Time travel?
<br/> If you do this is the right festival for you!
<br/> You don't even have to travel, we come to you,
<br/> And take you tot he biggest time adventure of your life!!
<br/> experience birth of music, the first rock song and much much more.
</p>
</div>
そしてCSS:
#textarea{
background-image:url(images/text.png);
background-repeat:no-repeat;
border:none;
width: 910px;
height:300px;
color:#CAAA5B;
padding:3px;
margin-right:4px;
margin-bottom:8px;
float:right;
}