html - Horizontally scrollable svg element? -


i place svg image in middle of webpage: design mockup

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

Popular posts from this blog

c - Calling a function within a loop -

vb.net - Unbound DataGridView add row with checkbox error -

How i fill combobox items in Radgridview manually using in vb.net -