+ 1
How can I set the rounded corners to tables and images in html itself?
2 Respuestas
+ 3
You can use inline styling if you really want to keep it all in the HTML, or write your style rules in a style tag in the head of your html.
Inline: https://code.sololearn.com/WG2alh0GWjgg/#html
Style tag: https://code.sololearn.com/WDXw35U75yuB/#html
+ 2
I don't know about HTML, but I do know that CSS has a tag border-radius
that can set rounded corners to alot of things.