How to make images scroll from center to left in HTML? -
i have been wondering how make images scroll center left, how image in site. http://www.kiminona.com/index.html#story
i've tried using <marquee> tag, scroll right left. , search how, found ways in css. need know how in html-only.
you still can use the old marquee in case. loop center left, trict put marquee inside left div below
.item { float:left; border: 1px solid green; height: 300px; width: 45%; } <div id="image" class="item"> <marquee>this text scroll _center_ left</marquee> </div> <div id="content" class="item"> content </div>
Comments
Post a Comment