Posts by utm • 119 points
6 posts
-
1
votes1
answer826
viewsQ: Text does not break line if I set a specific container size
tl;dr When I put a width in the text container it doesn’t break the lines to optimize space. Without setting anything the text becomes normal, and if I reset the screen size it will break naturally.…
-
0
votes1
answer602
viewsQ: Unwanted white space bringing the horizontal scroll bar to life by decreasing the screen
When resizing the screen, there comes a time when a blank space is being generated in the corner of the screen, starting to do something with grid and trying to make it responsive, I must add media…
-
0
votes1
answer16
viewsQ: Media querie in order to change the image does not work
I put a media querie for when width reaches 600px, change the image to a smaller. @media only screen and(max-width: 600px) { .header-container { background-image: url(//i.imgur.com/obpnQqo.png);…
-
4
votes2
answers33
viewsQ: Unwanted space on an edge with Hover event
I’m trying to replicate the menu effect of OW game modes selection and I came across the following problem: Apparently it is working right. However, when the border appears, it has an extra spacing…
-
2
votes1
answer625
viewsQ: CSS gradient background works horizontally but not vertically
The replica of the code: https://codepen.io/utamo/pen/XoyzWN when applying on the body: background: linear-gradient(to right, #33ccff 0%, #ff99cc 100%); I have the following result but when…
-
0
votes2
answers429
viewsQ: Problem with flexbox
My intention initially was to divide the header in 2 so that one part remained on the left and the other on the right. Then I put a flex-start and a flex-end, but it didn’t work out. I’m trying to…