Posts by isacvale • 176 points
4 posts
-
0
votes2
answers186
viewsA: Place arrow keys to change over the carousel
All elements are either "positioned" or "static". Positioned are all that have position: relative, absolute etc (any position except static). Elements without a declared position or with position:…
-
1
votes1
answer399
viewsA: How do you make Scroll center on the elements inside the container?
Yes! You need to give the container the rule scroll-snap-type: x mandatory, in the case of the horizontal scroll, and to the children give the rules scroll-snap-align: center. Now to the most…
-
1
votes1
answer37
viewsA: Best method for uploading images
HTML should contain information that is semantically relevant to your site, and CSS should offer information that is stylistic (decorative). Various types of readers will completely ignore the CSS,…
-
1
votes1
answer934
viewsA: Problem leaving a div Responsive
Just using the word "responsive" doesn’t help much. Frameworks promise (and deliver) responsiveness, but they will give you standardized results. Make the CSS manually offers more freedom, but it…