By using<frameset> tag how to divide a page into 4 equal parts | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

By using<frameset> tag how to divide a page into 4 equal parts

19th Aug 2017, 4:03 PM
Kaustubh Khavale
Kaustubh Khavale - avatar
3 Answers
+ 6
Combine rows and columns attributes . Frameset is really old, frames aren't supported in HTML5 and didn't work for me on SoloLearn. https://www.w3schools.com/tags/att_frame_frameborder.asp https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_frame_rows Original question: https://www.sololearn.com/Discuss/638959/?ref=app
19th Aug 2017, 4:08 PM
Kirk Schafer
Kirk Schafer - avatar
+ 5
Not Supported in HTML5
19th Aug 2017, 4:32 PM
Yasiru Nayanajith
Yasiru Nayanajith - avatar
0
<html> <frameset rows="50%,50%" cols="25%,25%"> <frame name="A"> <frame name="B"> <frame name="C"> <frame name="D"> </frameset> </html>
15th Jan 2020, 7:34 PM
Harsh Patel
Harsh Patel - avatar