Html Posted October 29, 2007 Report Share Posted October 29, 2007 <h4>Computer Animation</h4><div id="Computer Animation"><p> blah blah</p><div class="works"></div>And, div#computer animation text-align:right}I really don't know how to get this working, I'm using a seperate CSS file too. Link to comment Share on other sites More sharing options...
Ruud Posted October 30, 2007 Report Share Posted October 30, 2007 <h4>Computer Animation</h4><div id="Computer Animation"><p> blah blah</p><div class="works"></div>And, div#computer animation text-align:right}I really don't know how to get this working, I'm using a seperate CSS file too. Ok, I vleaned it up a bit and now it look like this hope that makes sense to you.<html><head><style type="text/css">#id {text-align: right;}</style></head><body><h4>Computer Animation</h4><div id="id"><p>blah blah</p></div></body></html> 1. Look at your css file you forgot the "{" and left no space behind the ":", also but I presume that is becouse you forgot a space it is not "div#computer..." but "#computer...".2. A class does not name a "<div>" only a "Id" does.3. Close your <div>'s. Link to comment Share on other sites More sharing options...
Synook Posted October 30, 2007 Report Share Posted October 30, 2007 You can't have spaces in an id, use underscores or camelCase. Casing also matters! <div id="computer_animation"> div#computer_animation { text-align:right; } You also have one too many opening divs. Get rid of the "works" division. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now