html - Horizontally scrollable svg element? -
i place svg image in middle of webpage:
the image should shown partially horizontally - ex., 1/3 of image should shown initially, user should able scroll horizontally (to see remaining 2/3 part). how should achieve that? (it should work in mobile browsers also).
just in case important - use material design lite framework.
upd. should possible scroll mouse/tap , scroll bar should hidden. see demo @ jsfiddle.net/and7ey/plf5namm/embedded/result/.
use overflow-x
.
svg { overflow-x: scroll; }
Comments
Post a Comment