"Anonymous" <an*******@isp.com> wrote in message news:92mAb.315809$275.1067304@attbi_s53...
Bob wrote:
Hi, U can use < dev class="xx"></div>
Where class xx:
.xxx{
background-color: white;
overflow: scroll;
.....
}
nc@iname.com (Nikolai Chuvakhin) wrote in message news:<32**************************@posting.google. com>...
Ralph Freshour <ra***@primemail.com> wrote in message
news:<6d********************************@4ax.com>. ..
I'm trying to add images to a TEXTAREA tag
Stop trying. It's not going to work. TEXTAREA is just a form
input, it is not supposed to hold anything othe than plain text...
I'm trying to display thumbnail images in a scrolling area
on the web page
Use frames.
Cheers,
NC
i'd recommend using an iframe, it'd work much better
If you don't want to deal with multiple "src" files which you would have to use in an Iframe, you can create a scrolling area with
CSS. Personally I like this option the best as it keeps all the code together.
<DIV style="height:160px; border: thin #000000; overflow-y:scroll; overflow-x:hidden;">
Scrollable HTML/PHP code goes here
</Div>
In the end it's not really a PHP issue, but more of an HTML/CSS issue.
-CF