Posts by Bruna Gomes da Silva • 72 points
4 posts
-
1
votes2
answers820
viewsA: Delimit table inside a modal with css
Create a new class (or enjoy the class 'modal-body' even), define the height and add property overflow: auto, That should solve your problem. However, you need to look at the structure of your code.…
-
3
votes1
answer702
viewsA: Radio button assignment via div
To label defines a label for an element input, thus improving user usability, which does not need to click on input. For this, it is necessary to associate the for of label of the same value as id…
-
1
votes1
answer1501
viewsA: How to get a picture of the user’s computer?
To get the image of the user’s device just use the tag input of the kind file. For more information, see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file <input name="myFile"…
-
0
votes2
answers84
viewsA: Error in positioning of Divs
Avoid using the property position in the elements, unless you really need to. Put the cards inside a div father to align only this element according to the structure of your page. In cards, use…