Overflow option in CSS for individual HTML page (not for all pages)
hello,
i creating website 1 page need add vertical scroll bar. i'm working divs , css. know can add text overflow option css affects every other page in website folder. want vertical scroll in 1 particular page. can please suggest how can this?
thank in advance.
m
option #1 -- embed page specific css rule web page between <style> , </style> tags. embedded styles take priority on external styles.
<style type="text/css">
/** page specific styles go here**/
#content {overflow: scroll;}
</style>
option #2 -- use inline css rule in html. inline styles take priority on embedded , external styles.
<div id="content" style="overflow:scroll">this content</div>
nancy o.
alt-web design & publishing
web | graphics | print | media specialists
http://alt-web.com/
http://twitter.com/altweb
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment