Note that there are some explanatory texts on larger screens.

plurals
  1. POMoving a table over a background CSS
    text
    copied!<p>I have tried to position #box1 under #table1 I try to move it however it doesn't move. What am I doing wrong. I am new to css. </p> <p>Edit: I put in my html </p> <pre><code> &lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;title&gt;Assignment 1&lt;/title&gt; &lt;meta charset="utf-8"&gt; &lt;style&gt; html{ background: #afc2df; } #box1{ position fixed; border: 120px; border-style: groove; border-radius:35px; width: 505px; length: 75px; margin-left: 85px; z-index: 5; } this is the table I want to move #table1{ position fixed; background: #00FFFF; margin-left: 118px; top: 160px; z-index: 6; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;b&gt;&lt;/b&gt;&lt;h1&gt;&lt;b&gt;&lt;i&gt;&lt;font face="impact" color="red"&gt;Name&lt;/font&gt; &lt;/i&gt;&lt;/b&gt;&lt;/h1&gt; &lt;b&gt;&lt;/b&gt;&lt;h2&gt;&lt;b&gt;&lt;i&gt;&lt;font face="impact" color="red"&gt;Number&lt;/font&gt; &lt;/i&gt;&lt;/b&gt;&lt;/h2&gt; &lt;table border="3" id="table1"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;th colspan="2"&gt;WEB PAGE ELEMENTS&lt;/th&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;Html&lt;/th&gt; &lt;td&gt;&lt;font face="Candara" color="black"&gt;Marks beginning and ending of a web page (closing tags needed)&lt;/font&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;Head&lt;/th&gt; &lt;td&gt;&lt;font face="Candara" color="black"&gt;Used to enclose elements not apart of the main page (closing tags needed)&lt;/font&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;Title&lt;/th&gt; &lt;td&gt;&lt;font face="Candara" color="black"&gt;Included in the &amp;lt;head&amp;gt; section, appears in the title bar of the browser (closing tags needed)&lt;/font&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;Body&lt;/th&gt; &lt;td&gt;&lt;font face="Candara" color="black"&gt;Includes content that is visible in the browser (closing tag needed)&lt;/font&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;Meta&lt;/th&gt; &lt;td&gt;&lt;font face="Candara" color="black"&gt;Allows passage of information about the page to user agents(self-closing tag)&lt;/font&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;div id="box1"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>this is the css along with my html thank you for your help I really want to get good at this and the assistance is appreciated </p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload