Posts by joão batista • 161 points
8 posts
-
1
votes1
answer106
viewsQ: Is it possible to repeat the "Animation-delay" property in each animation interaction?
The estate animation-delay only happens once in the first interaction of the animation, but after that it is no longer applied in the element. In the example below by hovering the mouse on…
-
3
votes1
answer88
viewsQ: How does it work and how do I use the Aspect-ratio property?
I don’t know how this property works or how to use it because I’ve tried to research more about it and only found two sites that mentions a little bit about it: CSS Tricks Smashing magazine But in…
cssasked joão batista 161 -
3
votes1
answer41
viewsQ: What does it mean and how to use the value (Number)n+(Number) in the Nth-Child() property?
I’ve seen several examples using the property nth-child() with values such as a number to select a particular element or select even and odd elements with values even and odd, but I saw that you can…
-
0
votes1
answer36
viewsQ: Why is first-Child selecting the <p> element?
<!doctype html> <html lang="pt-br"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">…
-
1
votes2
answers47
viewsA: Why doesn’t the contents disappear or appear when I mark the radio buttons?
I managed to solve the problem on the following line: #yes:checked #content { display: block; } #no:checked #content{ display: none; } I’m informing that the element with id="content" is within the…
-
0
votes2
answers47
viewsQ: Why doesn’t the contents disappear or appear when I mark the radio buttons?
<!doctype html> <html lang="pt-br"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">…
-
0
votes2
answers113
viewsQ: Is there only display inline and block by default in the elements or others?
I see a lot on the Internet talking so much about just display: inline and display: block, but in tables, for example in the element <table> his display is display: table, I wonder if: There…
-
4
votes1
answer60
viewsQ: What are content categories for?
Recently I discovered that in HTML5 there are categories that are called Content Categories (content categories) and are they: Metadata content Flow content Sectioning content Heading content…
htmlasked joão batista 161