css..Using CSS only (without adding additional HTML attributes), st
Using CSS only (without adding additional HTML attributes), style articles so that they occupy the whole browser window and have the following properties? can any body solve this question from this website link below https://www.testdome.com/questions/html-css/articles/17099?questionIds=11099,17099,13562,18996,15408&generatorId=69&type=fromtest&testDifficulty=Hard i tried this code but gave wrong answer <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Articles</title> <style> body{ padding:0; margin:0; } article:nth-child(1) { background-color:red; width: 50%; height: 50vh; position: relative; top:0%; left:0%; } article:nth-child(2) { background-color:Yellow; width: 50%; height: 50vh; position: relative; right:-50%; top:-50vh; } article:nth-child(3){ background-color:Blue; width: 50%; height: 50vh; position: relative; left:0%; bottom:50vh; } article:last-child{ background-color:Green; width: 50%; height: 50vh; position: relative; right:-50%; bottom:100vh; } </style> </head> <body> <article >First</article> <article>Second</article> <article>Third</article> <article>Fourth</article> </body> </html>