About Class (Branch 824)
✨ นางสาวรัชนีย์ ขันธิวงค์
<style> body{ margin:0; background:#eee; } .small{ /* ขนาดเล็ก */ width:40px; height:40px; background:pink; } .big{ /* ขนาดใหญ่ */ width:80px; height:80px; } .circle{ /* เป็นวงกลม*/ border-radius:100%; background:green; } .red{ /* สีแดง */ background:red; } .yellow{ /* สีเหลือง */ background:yellow; } </style> <div class="small"></div> <div class="small circle"></div> <div class="small circle yellow"></div> <div class="small circle yellow big"></div> <div class="small circle yellow big red"></div>