Posts by Denner Luan • 68 points
4 posts
-
1
votes1
answer56
viewsA: Unwanted CSS white space
Lucas, It wasn’t very clear, but I think the white space is between the footer and the container you created. You used the following properties in #container: #container { width: 1152px; height:…
-
3
votes1
answer42
viewsQ: Change color of the icon of a selected Tab
I’m developing tabs in Android Studio with com.google.android.material.tabs.Tablayout and would like to change the color of the icon, only of the selected tab. The icons are in SVG. And the text and…
androidasked Denner Luan 68 -
0
votes1
answer20
viewsA: Slides form a vertical list
To stand side by side, the display:inline-block in class . gallery . item will solve, but I don’t think this is your problem so it was reported. When you say stay horizontal, wouldn’t it be show…
-
1
votes2
answers255
viewsA: How to center all elements of an HTML page vertically?
in your case the Flexbox will help you a lot. You can create a div to wrap your Carousel and set its size. This div will receive the following css properties: .Wrapper{ display: flex;…