الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .grid-container { display: grid; background-color: dodgerblue; padding: 10px; grid-template-columns: auto auto auto; } .grid-container > div { text-align: center; background-color: #c1e2ff; padding: 10px; font-size: 20px; border: 1px solid; } .item-1 { grid-row-start: 1; grid-row-end: 3; } </style> </head> <body> <h1>CSS grid-row-start And grid-row-end Properties</h1> <p>The 'grid-row-start' property is used to specify on which row to start displaying the item.</p> <p>The 'grid-row-end' property is used to specify on which row to end displaying the item.</p> <div class="grid-container"> <div class="item-1">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>