+ 1

How to write on a rectangle?

How do I create white rectangle sections that I can add small paragraphs too using HTML and CSS?

26th May 2018, 5:00 AM
Kyle
Kyle - avatar
3 Respostas
+ 8
.div{ width=50 height=30 }
26th May 2018, 5:01 AM
Charan Leo25
Charan Leo25 - avatar
+ 4
26th May 2018, 5:05 AM
Alquen
Alquen - avatar
0
Html: <body> <div class="bordered"> <p>Text here</p> </div> </body> css: .bordered { border: 1px solid black; }
26th May 2018, 6:34 AM
BlazingMagpie
BlazingMagpie - avatar