TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> div { display: inline-block; margin:10px; width: 100px; height: 100px; } #div1 { background: rgb(24, 142, 255); } #div2 { background: rgb(24, 142, 255, 0.5); } </style> </head> <body> <div id="div1"></div> <div id="div2"></div> </body> </html>