=====
CS 328 - Week 8 Lecture 1 - 2025-03-10
=====

=====
TODAY WE WILL
=====
*   talk about CSS sizes
*   maybe start the CSS box model <- no, that will be Wednesday!

=====
*   Should be reading/working through the course zyBook
    Chapter 3, "CSS Fundamentals"

*   Should be working on Homework 6
    *   at-least-1st-attempts due by 11:59 pm on Friday, March 14

*   Watch for class e-mail when zyBooks Chapter 4, "More CSS",
    available

=====
UPCOMING SCHEDULE
=====
*   TODAY
    *   CS Candidate TEACHING TALK at start of lecture - SH 108
    
    *   2 clicker-questions-worth of bonus clicker points
        if attend AND sign sign-in sheet at BEGINNING of talk

    *   then regular lecture on more CSS
        (which will be supplemented by a recorded, posted lecture)

*   Wednesday, March 12 - more discussion of CSS

*   (WILL be labs on Thursday, March 13/Friday, March 14!)

*   (Homework 6's at-least-first-attempts will be due 11:59 pm
    Friday, March 14)

*   (Homework 7 comes out the weekend of March 15/16,
    but will have at-least-first-attempts due
    by 11:59 pm Friday, March ***28***
    because of Spring Break March 17-21)

PLEASE contact me if you have any questions about the above!

====
sizes!
====
*   several units are supported by CSS

*   we will focus on relative units:
    % and em

    em is roughly the size of an uppercase M in the element's
    current font (!)

*   QUIRK to know:
    when a declaration includes a size,
    there can be NO space between the numeric size
    and its unit:

    footer
    {
        font-size: 0.5em;
    }