0

How do you make shapes in web

2nd Jun 2024, 2:12 AM
Kongpheng Lo
Kongpheng Lo - avatar
3 Respuestas
2nd Jun 2024, 4:09 AM
BroFar
BroFar - avatar
2nd Jun 2024, 3:20 AM
Keith
Keith - avatar
+ 1
<div class="triangle"></div> <style> .triangle { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 100px solid yellow; } </style> Here is a example
3rd Jun 2024, 11:48 AM
Vidhya Tharan
Vidhya Tharan - avatar