Is there a way to implement show hide divs in a responsive website? -
is there way implement show hide divs in responsive website once viewport contracts width of 500px?
what want when viewport contracts width of 500pixels each of current divs can hidden show hide or toggle or kind of accordion?
what means these functions not "kick in" until viewport contracts width.
is possible?
here site need on:
http://surfingthebluemarble.com/mnews.html
right when site contracts, content way long. need hide able hide , show divs on click.
thanks in advance always.
regards, umbre gachoong
yes, can create css targeted viewports (screens)
e.g.
/* smartphones (portrait , landscape) ----------- */ @media screen , (min-device-width : 320px) , (max-device-width : 480px) { /* styles */ } refer this
Comments
Post a Comment