html - Fixed banner next to my wrapper? -
html - Fixed banner next to my wrapper? -
so trying create banners scroll page, 40px left wrapper. site: http://joostmeijer.eu/ can see how html works. don't how can create banner div fixed relative wrapper.
you can create <div>
within wrapper
div, illustration <div id="fixedwrapper"></div>
, , style this:
div#fixedwrapper { display: block; width: 140px; height: 500px; position: fixed; left: 0px; background: black; }
here's live example: jsfiddle demo. although need utilize css3 @media-queries
remove banner when window size reduced since website isn't responsive , banner overlap content 1 time window size reduced.
html css css-position
Comments
Post a Comment