Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My internal css won't work with the little code I have. This seems like a really stupid question but nothing I do helps.

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<title>Ask Help</title>
<style type = "text/css">
@font-face {
font-family: "junction";
src: url("Junction_02.otf");
}

html {
background-image: linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -o-linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -webkit-linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219)       54%);
background-image: -ms-linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.02,   rgb(75,135,163)), color-stop(0.54, rgb(127,219,219))
}

.menu {
list-style-type: none;
font-size: 25px;
}

h1 {
font-family: junction;
text-size: 60px;
}
</style>
</head>
<body>
    <nav>
        <ul class="menu">
            <li><a href="index.html" title="Home">Home</a></li>
            <li><a href="about.html" title="About Us">About</a></li>
            <li><a href="past.html" title="iPod">Past Q&amp;A's</a></li>
        </ul>
    </nav>
</body>
</html>
share|improve this question
3  
You appear to be missing </html>. But what part is "not working"? – Kolink Sep 24 '11 at 2:02
1  
Please elaborate on what the problem is. "Won't work" doesn't tell us much. Also, what browser are you testing this in? – Anson Sep 24 '11 at 2:02
the </html> must not have been copied, but the styling doesn't work – Connor Sep 24 '11 at 2:03
I'm testing in Safari for Windows 7 – Connor Sep 24 '11 at 2:04
It is called inline... – webarto Sep 24 '11 at 2:04
show 1 more comment

1 Answer

up vote 6 down vote accepted

This line is missing a close parenthesis ) which is affecting your markup:

background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.02,   rgb(75,135,163)), color-stop(0.54, rgb(127,219,219))

Change it to this:

background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.02,   rgb(75,135,163)), color-stop(0.54, rgb(127,219,219)));

You should look into using W3C's HTML and CSS validation tools to catch problems like these. The HTML validator isn't great about catching bad CSS, so you can copy-paste your embedded CSS into the CSS validator.

Oh and might as well put a semi-colon at the end of that last background-image statement (I did it for you), since it'll save you grief if you add more lines in the future but forget to add the semi-colon to the previous line.

share|improve this answer
1  
Demo: jsfiddle.net/zGLL6 – Jared Farrish Sep 24 '11 at 2:10
@JaredFarrish Thanks for that. – Anson Sep 24 '11 at 2:12
Wow that was reeeally stupid of me. Thanks – Connor Sep 24 '11 at 15:53
No problem. Please accept an answer if you feel that your question was adequately answered. To accept an answer, click the check mark next to the answer you think is best. This gives credit to the answerer and informs others that your issue is resolved. More information on accepting answers on the meta page. – Anson Sep 24 '11 at 19:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.