Css calendar?

liunx

Guest
How do you make a calendar of the month june using css? I want to put the events in the days.

Thanksi think for something like you may need to learn some PHP or another server-side scripting language as well...

but I wouldnt use CSS divs to do that considering all that rows and columns, id rather use tablesI am making a calendar as we speak.

If you go here (<!-- m --><a class="postlink" href="http://www.gslc.qld.edu.au/newpage/calendar/calendar.htm">http://www.gslc.qld.edu.au/newpage/cale ... lendar.htm</a><!-- m -->) you can see the first version of it(nothing works, still trying to get the layout to behave).

If anyone wises to help me fix my design, read my post here (<!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/showthread.php?t=70101">http://www.webdeveloper.com/forum/showt ... hp?t=70101</a><!-- m -->)

WofenYou can define the way a calendar looks with CSS but you can't make one with CSS.You can define the way a calendar looks with CSS but you can't make one with CSS.

Yes, to make all the interactive parts of the calendar, you would have to use something like ASP or PHP. There are some very good free PHP calendars.

Go to sorce forge and look for Web calendar. That will give you a few really good PHP calendars, and all you have to do is set up a PHP server to run it on.

WofenYou can define the way a calendar looks with CSS but you can't make one with CSS.

I agree with Ray.

A calendar is considered "tabular data" in my books.But only one table... Don't try stupid things like nesting them. The day names should be <th> and the days should be <td>Using tables, and css together, how do i define setting for cells???

Like, with the <TH> command, in my css sheet, would I use something along the lines of

.th {
ect ect ect}

I keep forgetting what symbols to use, and I cant find a quick guide anywhere. If anyone knows of one, please post it up.

WofenWhat do you mean by symbols?

The complete list of HTML elements can be found at <!-- m --><a class="postlink" href="http://www.w3.org/TR/html401/index/elements.html">http://www.w3.org/TR/html401/index/elements.html</a><!-- m --> .
The complete list of CSS properties can be found at <!-- m --><a class="postlink" href="http://www.w3.org/TR/CSS2/propidx.html">http://www.w3.org/TR/CSS2/propidx.html</a><!-- m --> .The selectors are the text of the tag so for <th> you have th {...}.
 
Back
Top