How can I use two on one line using CSS?
Sep.13, 2007 in
CSS
argh.pirate asked:
I want the heading and date to be on the same line and each have a separate
Custom Search
2 Comments on “How can I use two on one line using CSS?”
Leave a Reply
You must be logged in to post a comment.
September 17th, 2007 at 2:44 am
Your title
#left {
width: 50%;
float: left;
}
#right {
width: 50%;
float: right;
}
This should float left.
This should float right.
OR if that don’t work..
Use for both divs “float: left”.
September 17th, 2007 at 7:38 am
You probably want span, not div.