+ 3
How do you make a border
How do you make a border around writing on HTML...
6 Answers
+ 8
check this made for you.
https://code.sololearn.com/WV3G92xk5DFG/?ref=app
+ 4
You could use inline CSS in your div:
<div id=âdiv_nameâ style=âborder-width:1px; border-style:solid; border-color:blackâ>
</div>
or (shorthand):
<div id=âdiv_nameâ style=âborder:1px solid blackâ>
</div>
Of course if your object is a paragraph or span element, you would replace <div> with <p> or <span>.
+ 2
use css property for border to any element div span image many more
+ 2
ok
+ 2
If you wanna make a border around your image without CSS!!
my simple code!!đđ
https://code.sololearn.com/WUe32R14OT4F/?ref=app
+ 1
you can use the external css for example
selector{border:2px dotted black}