{"id":12297,"date":"2022-07-18T19:36:15","date_gmt":"2022-07-18T17:36:15","guid":{"rendered":"https:\/\/www.beseit.net\/?p=12297"},"modified":"2022-07-18T19:50:24","modified_gmt":"2022-07-18T17:50:24","slug":"css-layout-tecniques","status":"publish","type":"post","link":"https:\/\/www.beseit.net\/?p=12297","title":{"rendered":"CSS LAYOUT TECNIQUES"},"content":{"rendered":"<p><a href=\"http:\/\/web.simmons.edu\/~grabiner\/comm244\/weeknine\/css-layouts.html\">http:\/\/web.simmons.edu\/~grabiner\/comm244\/weeknine\/css-layouts.html#two_column_layouts<\/a><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.beseit.net\/wp-content\/uploads\/2022\/07\/071822_1748_CSSLAYOUTTE1-1.png\" alt=\"\" \/><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.beseit.net\/wp-content\/uploads\/2022\/07\/071822_1748_CSSLAYOUTTE2-1.png\" alt=\"\" \/><\/p>\n<p><span style=\"font-size: 16pt;\"><strong>2-column-stretch.css<br \/>\n<\/strong><\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\/*<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0This is basic CSS code for a website with a header, footer, and 2 columns<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0The sidebar is on the left.<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0The site is centered and the content is 960px wide, but the backgrounds stretch to fit the page<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">*\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\/* Basic Reset *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">* {margin:0; padding: 0;}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\/* Basic Structure *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">body {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0text-align: center;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* This is a hack for older browsers to center the page *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">.centerLayout {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* We use a class for this since we&#8217;re using it in several places *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0margin: 0 auto; \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* This centers the page in modern browsers *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0text-align: left; \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* This is a hack for older browsers to center the page *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0width: 960px; \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* This sets our total page width *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#navigation li {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0float: left; \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* Floating also makes our navigation display in a line *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#content {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0float: left;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* This causes the content to move to the left *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0width: 700px;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* We need to set the width whenever we float an element *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#sidebar {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0float: left; \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* This causes the sidebar to move to the left *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0width: 260px; \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* We need to set the width whenever we float an element *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#footer {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0clear: both; \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* This makes sure that the footer clears both the sidebar and content floats *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\/*<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\"> * For Demonstration Only<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\"> * This code is just for the purpose of the demonstration to hightlight things so that you can see them<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\"> *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">body {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0background-color: #666;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0color: white;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#header {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0background-color: aqua;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0height: 100px;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#navigation {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0background-color: red;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0line-height: 2;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0overflow: auto;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* Elements that only contain &#8220;floated&#8221; content have no height.<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0In order to give then height and force them to wrap around their content,<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0we use overflow: auto<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0*\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#navigation li {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0list-style: none;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0width: 150px;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* This sets the width of our links to 150px wide *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#content {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0background-color: #666;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#sidebar {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0background-color: #999;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0clear: left;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\/* We have to make sure that the sidebar clears the navigation, since we&#8217;ve floated it *\/<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">#footer {<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0background-color: black;<br \/>\n<\/span><\/p>\n<p><span style=\"font-family: Courier New; font-size: 10pt;\">}<br \/>\n<\/span><\/p>\n<p><span style=\"font-size: 16pt;\"><strong>2_Column_Layout.html<br \/>\n<\/strong><\/span><\/p>\n<pre><code>&lt;!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD XHTML 1.0 Strict\/\/EN\" \"http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-strict.dtd\"&gt;\r\n<\/code><\/pre>\n<pre><code>&lt;html xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\" xml:lang=\"ru\"&gt;\r\n<\/code><\/pre>\n<pre><code>&lt;head&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;title&gt;Basic 2 Column Layout that stretchs&lt;\/title&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;meta http-equiv=\"Content-Type\" content=\"text\/html;charset=UTF-8\"\/&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;link rel=\"stylesheet\" href=\"<a href=\"view-source:http:\/\/web.simmons.edu\/~grabiner\/comm244\/weeknine\/2-column-stretch.css\"><span style=\"color: #0563c1; text-decoration: underline;\">2-column-stretch.css<\/span><\/a>\" type=\"text\/css\" media=\"screen\" charset=\"utf-8\" \/&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>&lt;\/head&gt;\r\n<\/code><\/pre>\n<pre><code>&lt;body&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>&lt;div id=\"header\"&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;div class=\"centerLayout\"&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;p&gt;logo&lt;\/p&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;\/div&gt;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>&lt;\/div&gt;\r\n<\/code><\/pre>\n<pre><code>&lt;div id=\"navigation\"&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;div class=\"centerLayout\"&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;ul&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;li&gt;link 1&lt;\/li&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;li&gt;link 2&lt;\/li&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;li&gt;link 3&lt;\/li&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;\/ul&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;\/div&gt;\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>&lt;\/div&gt;\r\n<\/code><\/pre>\n<pre><code>&lt;div class=\"centerLayout\"&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;div id=\"sidebar\"&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;h2&gt;Sidebar&lt;\/h2&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&lt;\/p&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;\/div&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;div id=\"content\"&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;h1&gt;Content&lt;\/h1&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&lt;\/p&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&lt;\/p&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;\/div&gt;\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>&lt;\/div&gt;\r\n<\/code><\/pre>\n<pre><code>&lt;div id=\"footer\"&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;div class=\"centerLayout\"&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;h3&gt;Footer&lt;\/h3&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&lt;\/p&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;\/div&gt;\r\n<\/code><\/pre>\n<pre><code>&lt;\/div&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0&lt;\/div&gt;\r\n<\/code><\/pre>\n<pre><code>\u00a0\u00a0\u00a0\u00a0\r\n<\/code><\/pre>\n<pre><code>&lt;\/body&gt;\r\n<\/code><\/pre>\n<pre><code>&lt;\/html&gt;\r\n<\/code><\/pre>\n<p><span style=\"font-size: 12pt;\"><strong><br \/>\n<\/strong><\/span><\/p>\n<div id=\"simple-translate\">\n<div>\n<div class=\"simple-translate-button isShow\" style=\"background-image: url('moz-extension:\/\/b8ec352a-49f5-45c0-b0c1-3791d2c5b4e6\/icons\/512.png'); height: 22px; width: 22px; top: 733px; left: 46px;\"><\/div>\n<div class=\"simple-translate-panel \" style=\"width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;\">\n<div class=\"simple-translate-result-wrapper\" style=\"overflow: hidden;\">\n<div class=\"simple-translate-move\" draggable=\"true\"><\/div>\n<div class=\"simple-translate-result-contents\">\n<p class=\"simple-translate-result\" dir=\"auto\" style=\"color: #000000;\">\n<p class=\"simple-translate-candidate\" dir=\"auto\" style=\"color: #737373;\">\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>http:\/\/web.simmons.edu\/~grabiner\/comm244\/weeknine\/css-layouts.html#two_column_layouts 2-column-stretch.css \/* \u00a0\u00a0\u00a0\u00a0This is basic CSS code for a website with a header, footer, and 2 columns \u00a0\u00a0\u00a0\u00a0The sidebar is on the left. \u00a0\u00a0\u00a0\u00a0The site is centered and the content is 960px wide, but the backgrounds stretch to fit &hellip; <a href=\"https:\/\/www.beseit.net\/?p=12297\">Continua llegint <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[19],"tags":[],"class_list":["post-12297","post","type-post","status-publish","format-standard","hentry","category-html"],"_links":{"self":[{"href":"https:\/\/www.beseit.net\/index.php?rest_route=\/wp\/v2\/posts\/12297","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.beseit.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.beseit.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.beseit.net\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.beseit.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=12297"}],"version-history":[{"count":4,"href":"https:\/\/www.beseit.net\/index.php?rest_route=\/wp\/v2\/posts\/12297\/revisions"}],"predecessor-version":[{"id":12305,"href":"https:\/\/www.beseit.net\/index.php?rest_route=\/wp\/v2\/posts\/12297\/revisions\/12305"}],"wp:attachment":[{"href":"https:\/\/www.beseit.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=12297"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.beseit.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=12297"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.beseit.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=12297"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}