Note that there are some explanatory texts on larger screens.

plurals
  1. POCSS Margin problem
    primarykey
    data
    text
    <p>I'm starting out in HTML and CSS.<br> I have a div element on the page, which doesn't fill the whole page.<br> In it- there's a ul element and some list items in it.<br> I want to put the list 227px from the top of the div element, but I can't manage to accomplish this- it pushes it more.<br> Also- between the list items I want a margin of 40 pixels, but it also does more.<br> What's the problem?<br> Here's my code:<br> Html:</p> <pre><code>&lt;body&gt; &lt;div class="Hashta"&gt; &lt;div class="Menu"&gt; &lt;ul id="MenuItems"&gt; &lt;li&gt;&lt;a href="#" &gt;ONE&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" &gt;TWO&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" &gt;THREE&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#" &gt;FOUR&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p>CSS: </p> <pre><code>body { background-color: Gray; } .Hashta{ width:874px; height:650px; background-color:black; margin: auto auto 50px auto; border-radius: 20px; border: 3px solid darkgray; moz-box-shadow: 2px 2px 10px black; webkit-box-shadow: 2px 2px 10px black; box-shadow: 2px 2px 10px black; } .Menu { margin-top: 227px; padding-right: 50px; float:right; } #MenuItems { list-style:none; } #MenuItems li { text-align:center; position:relative; padding: 4px 10px 4px 10px; margin-right:30px; margin-bottom: 40px; border:none; } #MenuItems li a{ width: 280px; height: 70px; background-color: green; color:White; font-family:Arial, Helvetica, sans-serif; font-size:24px; display:block; outline:0; text-decoration:none; text-shadow: 1px 1px 1px #000; line-height: 70px; } </code></pre> <p>If you want to measure the pixels- you can install this: <a href="http://www.mioplanet.com/products/pixelruler/" rel="nofollow">http://www.mioplanet.com/products/pixelruler/</a> (click to rotate)<br> Thanks!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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