Posts by Paulo Calixto • 75 points
4 posts
-
1
votes1
answer54
viewsA: How do I make the internal elements of ASIDE remain horizontal?
Change your CSS code by: aside{ background-color: #222; margin-top: 10px; margin-left: 10px; width: 100%; max-width: 1200px; margin-bottom: 10px; box-sizing: border-box; display: flex;…
-
1
votes1
answer873
viewsA: How to organize data in 3 columns without breaking layout using CSS Flexbox?
How are you already using the display: flex use the attributes flex-direction: row and flex-wrap: wrap. Source…
-
0
votes2
answers122
viewsA: alignment of text and image
Use Media Screen to use a specific CSS for the width you want. Example: @media screen and (max-width: 540px) { img { display: block; width: 100%; } span { width: 100%; } } Remember that the code…
-
2
votes1
answer85
viewsQ: How to put an overflow on a scripted div to leave fixed lists in the header?
Hello, I’m trying to add a overflow:scroll in my project, but this invalidates the script that leaves the div marker fixed at the top until you reach the next div. http://jsfiddle.net/5cC83/5/ If…