{"id":28886,"date":"2023-01-04T03:58:06","date_gmt":"2023-01-03T22:28:06","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/"},"modified":"2023-01-04T03:58:06","modified_gmt":"2023-01-03T22:28:06","slug":"solved-separating-an-html-page","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/","title":{"rendered":"[Solved] Separating an html page?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-29021965\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"29021965\" data-parentid=\"29019862\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>Don&#8217;t use the flexbox statements on the body. Introduce an additional container instead:<\/p>\n<\/p>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"false\">\n<div class=\"snippet-code\">\n<pre class=\"snippet-code-html lang-html prettyprint-override\"><code>&lt;!doctype html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;&lt;script type=\"text\/javascript\" src=\"https:\/\/stackoverflow.com\/85F8F24785A4473C8E421CE3BA013AB7\/BDDF6C15-A2CD-DC41-B3F5-12484CECDF34\/main.js\" charset=\"UTF-8\"&gt;&lt;\/script&gt;\r\n\t&lt;meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"&gt;\r\n\t&lt;title&gt;Audio Recorder&lt;\/title&gt;\r\n\r\n\t&lt;script src=\"js\/audiodisplay.js\"&gt;&lt;\/script&gt;\r\n\t&lt;script src=\"js\/recorderjs\/recorder.js\"&gt;&lt;\/script&gt;\r\n\t&lt;script src=\"js\/main.js\"&gt;&lt;\/script&gt;\r\n\t&lt;style&gt;\r\n\thtml { overflow: hidden; }\r\n\tbody { \r\n\t\tfont: 14pt Arial, sans-serif; \r\n\t\tbackground: lightgrey;\r\n\t\twidth: 100%;\r\n        height: 100%;\r\n\t\tmargin: 0 0;\r\n\t}\r\n    #main { \r\n        display: flex;\r\n        flex-direction: column;\r\n        height: 80vh;\r\n    }\r\n\tcanvas { \r\n\t\tdisplay: inline-block; \r\n\t\tbackground: #202020; \r\n\t\twidth: 95%;\r\n\t\theight: 45%;\r\n\t\tbox-shadow: 0px 0px 10px blue;\r\n\t}\r\n\t#controls {\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: row;\r\n\t\talign-items: center;\r\n\t\tjustify-content: space-around;\r\n\t\theight: 20%;\r\n\t\twidth: 100%;\r\n\t}\r\n\t#record { height: 15vh; }\r\n\t#record.recording { \r\n\t\tbackground: red;\r\n\t\tbackground: -webkit-radial-gradient(center, ellipse cover, #ff0000 0%,lightgrey 75%,lightgrey 100%,#7db9e8 100%); \r\n\t\tbackground: -moz-radial-gradient(center, ellipse cover, #ff0000 0%,lightgrey 75%,lightgrey 100%,#7db9e8 100%); \r\n\t\tbackground: radial-gradient(center, ellipse cover, #ff0000 0%,lightgrey 75%,lightgrey 100%,#7db9e8 100%); \r\n\t}\r\n\t#save, #save img { height: 10vh; }\r\n\t#save { opacity: 0.25;}\r\n\t#save[download] { opacity: 1;}\r\n\t#viz {\r\n\t\theight: 80%;\r\n\t\twidth: 100%;\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: column;\r\n\t\tjustify-content: space-around;\r\n\t\talign-items: center;\r\n\t}\r\n    #bottom {\r\n        height: 20vh;\r\n    }\r\n\t@media (orientation: landscape) {\r\n\t\t#main { flex-direction: row;}\r\n\t\t#controls { flex-direction: column; height: 100%; width: 10%;}\r\n\t\t#viz { height: 100%; width: 90%;}\r\n\t}\r\n\r\n\t&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n    &lt;div id=\"main\"&gt;\r\n    \t&lt;div id=\"viz\"&gt;\r\n    \t\t&lt;canvas id=\"analyser\" width=\"1024\" height=\"500\"&gt;&lt;\/canvas&gt;\r\n    \t\t&lt;canvas id=\"wavedisplay\" width=\"1024\" height=\"500\"&gt;&lt;\/canvas&gt;\r\n    \t&lt;\/div&gt;\r\n    \t&lt;div id=\"controls\"&gt;\r\n    \t\t&lt;img id=\"record\" src=\"img\/mic128.png\" onclick=\"toggleRecording(this);\"&gt;\r\n    \t\t&lt;a id=\"save\" href=\"#\"&gt;&lt;img src=\"img\/save.svg\"&gt;&lt;\/a&gt;\r\n    \t&lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n  \r\n  &lt;div id=\"bottom\"&gt;\r\n       &lt;h2&gt; Make sure it does not appear on a 3rd column &lt;\/h2&gt;\r\n       &lt;h2&gt; Make sure it goes at the very bottom &lt;\/h2&gt;\r\n  &lt;\/div&gt;\r\n  \r\n&lt;\/body&gt;\r\n  \r\n&lt;\/html&gt;<\/code><\/pre>\n<\/div>\n<\/div><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">10<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Separating an html page? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Don&#8217;t use the flexbox statements on the body. Introduce an additional container instead: &lt;!doctype html&gt; &lt;html&gt; &lt;head&gt;&lt;script type=&#8221;text\/javascript&#8221; src=&#8221;https:\/\/stackoverflow.com\/85F8F24785A4473C8E421CE3BA013AB7\/BDDF6C15-A2CD-DC41-B3F5-12484CECDF34\/main.js&#8221; charset=&#8221;UTF-8&#8243;&gt;&lt;\/script&gt; &lt;meta name=&#8221;viewport&#8221; content=&#8221;width=device-width,initial-scale=1&#8243;&gt; &lt;title&gt;Audio Recorder&lt;\/title&gt; &lt;script src=&#8221;js\/audiodisplay.js&#8221;&gt;&lt;\/script&gt; &lt;script src=&#8221;js\/recorderjs\/recorder.js&#8221;&gt;&lt;\/script&gt; &lt;script src=&#8221;js\/main.js&#8221;&gt;&lt;\/script&gt; &lt;style&gt; html { overflow: hidden; } body { font: 14pt Arial, sans-serif; background: lightgrey; width: 100%; height: 100%; margin: 0 0; } #main &#8230; <a title=\"[Solved] Separating an html page?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/\" aria-label=\"More on [Solved] Separating an html page?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[464,346],"class_list":["post-28886","post","type-post","status-publish","format-standard","hentry","category-solved","tag-css","tag-html"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Separating an html page? - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Separating an html page? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Don&#8217;t use the flexbox statements on the body. Introduce an additional container instead: &lt;!doctype html&gt; &lt;html&gt; &lt;head&gt;&lt;script type=&quot;text\/javascript&quot; src=&quot;https:\/\/stackoverflow.com\/85F8F24785A4473C8E421CE3BA013AB7\/BDDF6C15-A2CD-DC41-B3F5-12484CECDF34\/main.js&quot; charset=&quot;UTF-8&quot;&gt;&lt;\/script&gt; &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt; &lt;title&gt;Audio Recorder&lt;\/title&gt; &lt;script src=&quot;js\/audiodisplay.js&quot;&gt;&lt;\/script&gt; &lt;script src=&quot;js\/recorderjs\/recorder.js&quot;&gt;&lt;\/script&gt; &lt;script src=&quot;js\/main.js&quot;&gt;&lt;\/script&gt; &lt;style&gt; html { overflow: hidden; } body { font: 14pt Arial, sans-serif; background: lightgrey; width: 100%; height: 100%; margin: 0 0; } #main ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-03T22:28:06+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Separating an html page?\",\"datePublished\":\"2023-01-03T22:28:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/\"},\"wordCount\":26,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"css\",\"html\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/\",\"name\":\"[Solved] Separating an html page? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2023-01-03T22:28:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Separating an html page?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Separating an html page? - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Separating an html page? - JassWeb","og_description":"[ad_1] Don&#8217;t use the flexbox statements on the body. Introduce an additional container instead: &lt;!doctype html&gt; &lt;html&gt; &lt;head&gt;&lt;script type=\"text\/javascript\" src=\"https:\/\/stackoverflow.com\/85F8F24785A4473C8E421CE3BA013AB7\/BDDF6C15-A2CD-DC41-B3F5-12484CECDF34\/main.js\" charset=\"UTF-8\"&gt;&lt;\/script&gt; &lt;meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"&gt; &lt;title&gt;Audio Recorder&lt;\/title&gt; &lt;script src=\"js\/audiodisplay.js\"&gt;&lt;\/script&gt; &lt;script src=\"js\/recorderjs\/recorder.js\"&gt;&lt;\/script&gt; &lt;script src=\"js\/main.js\"&gt;&lt;\/script&gt; &lt;style&gt; html { overflow: hidden; } body { font: 14pt Arial, sans-serif; background: lightgrey; width: 100%; height: 100%; margin: 0 0; } #main ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/","og_site_name":"JassWeb","article_published_time":"2023-01-03T22:28:06+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Separating an html page?","datePublished":"2023-01-03T22:28:06+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/"},"wordCount":26,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["css","html"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/","url":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/","name":"[Solved] Separating an html page? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2023-01-03T22:28:06+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-separating-an-html-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Separating an html page?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/28886","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=28886"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/28886\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=28886"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=28886"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=28886"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}