Fill in the blanks to make blue rectangular straight immediately at the left-top corner of the browser | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Fill in the blanks to make blue rectangular straight immediately at the left-top corner of the browser

<svg width="200" height"200"> <_____width="100" height="10" x="_" y="_" __="blue"/> </svg>

28th Jun 2017, 3:35 AM
Sunil
Sunil - avatar
2 Answers
+ 7
Maybe rect, 0, 0, fill
28th Jun 2017, 3:46 AM
김정제(Legacy)
김정제(Legacy) - avatar
+ 5
<svg width="200" height"200"> <rect width="100" height="10" x="0" y="0" fill="blue"/> </svg>
7th Oct 2020, 7:53 AM
[No Name]