How to add triange border I mean to say bottom arrow with a box. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to add triange border I mean to say bottom arrow with a box.

28th Nov 2016, 7:14 AM
Infoore
Infoore - avatar
1 Answer
+ 2
<!DOCTYPE html> <html> <head> <title>Page Title</title> <style> body { margin:20px; } #tring { position: absolute; top: 1em; left:1em; border:50px solid black; border-color: transparent transparent black transparent; } </style> </head> <body> <span id="tring"></span> </body> </html> like this?
28th Nov 2016, 11:50 AM
alexyork
alexyork - avatar