الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .grid-container { display: grid; background-color: dodgerblue; padding: 10px; grid-template-columns: auto auto auto; grid-row-gap: 10px; } .grid-container > div { text-align: center; background-color: #c1e2ff; padding: 10px; font-size: 20px; border: 1px solid; } </style> </head> <body> <h1>CSS grid-row-gap Property</h1> <p>This property is used to defines the size of the gap between the rows in a grid layout.</p> <div class="grid-container"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> <div>9</div> </div> </body> </html>