whats the code for a plain scroll box for myspace? (html)?

  • Thread starter Thread starter Nicole :D
  • Start date Start date
Place anywhere you want it to show:


<div style="overflow: auto; width: 200px; height: 70px; border:1px solid; border-color:transparent;">
text here!
</div>
 
<style>
div.myspace-scroll-box {
height:150px;
width:300px;
overflow:scroll;
}
</style>
<div class="myspace-scroll-box">
TEXT,HTML ETC IN HERE
</div>
 
Back
Top