Posts by Lucas Bacciotti • 1 point
2 posts
-
0
votes0
answers23
viewsQ: Why do some classes start with points and others don’t?
In CSS, when defining class H2, for example, it does not start with dot: H2 { color: red; } But other classes need the point: .text-red { color:red; } Why does this happen?…
-
0
votes1
answer179
viewsQ: Dynamic form in PHP and Mysql
need a dynamic form that operates as follows: The page should generate Y textboxes according to a Y number in the bank. My reasoning is this:: a. I select in the bank to see the number b. I do a…