SlideShare uma empresa Scribd logo
1 de 116
Baixar para ler offline
PAGE DESIGN CSS

Tuesday, April 16, 13
The Web is made of


           boxes



Tuesday, April 16, 13
Boxes inside of boxes
Tuesday, April 16, 13
Boxes inside of boxes
Tuesday, April 16, 13
Boxes inside of boxes
Tuesday, April 16, 13
Boxes inside of boxes
Tuesday, April 16, 13
What do we already know about boxes?




Tuesday, April 16, 13
(Block-level elements are boxes)




Tuesday, April 16, 13
Headers (h1 - h6)




Tuesday, April 16, 13
Paragraphs




Tuesday, April 16, 13
List items




Tuesday, April 16, 13
Any observations about boxes?




Tuesday, April 16, 13
Boxes take up space
              By default they
                   • inherit their width
                   • inherit their height
                   • inherit their padding
                   • inherit their margin
                   • have no borders, but can




Tuesday, April 16, 13
Boxes take up space
              By default they
                   • inherit their width
                   • inherit their height
                   • inherit their padding
                   • inherit their margin
                   • have no borders, but can




Tuesday, April 16, 13
Boxes take up space
              By default they
                   • inherit their width
                   • inherit their height
                   • inherit their padding
                   • inherit their margin
                   • have no borders, but can




Tuesday, April 16, 13
Boxes take up space
              By default they
                   • inherit their width
                   • inherit their height
                   • inherit their padding
                   • inherit their margin
                   • have no borders, but can




Tuesday, April 16, 13
Boxes take up space
              By default they
                   • inherit their width
                   • inherit their height
                   • inherit their padding
                   • inherit their margin
                   • have no borders, but can




Tuesday, April 16, 13
Terminology
                                         ome m at h!)
                                (and s




                        boxes.html
Tuesday, April 16, 13
300px




                        p{
                             width: 300px;
                         }




               Width
Tuesday, April 16, 13
310px

                                       300px



                        5px                                5px

                         p{
                              width: 300px;
                              border: 5px solid #000000;
                          }




               Border
Tuesday, April 16, 13
300px
                         5px                                           5px
                               25                                 25




                                                  360px
                                    p{
                                         width: 300px;
                                         border: 5px solid #000000;
                                         padding: 25px;
                                     }



               Padding
Tuesday, April 16, 13
padding: 25px;


                             padding: 25px 25px 25px 25px;

                25      25
                             padding-top: 25px;
                             padding-right: 25px;
                             padding-bottom: 25px;
                             padding-left: 25px;




Tuesday, April 16, 13
300px
                         5px                                    5px
                        25                                            25
                        25




                                            360px
                             p{
                                   width: 300px;
                                   border: 5px solid #000000;
                                   margin: 25px;
                               }



               Margin
Tuesday, April 16, 13
25                        25   25                    25




                             360px                     360px

                        margin: 25px;             padding: 25px;




                          Margin                  Padding
Tuesday, April 16, 13
300px
                          5px                                         5px

                                    25                           25

                                         25




                                                360px
                                                410px

                            p{
                                    width: 300px;
                                    border: 5px solid #000000;
                                    margin: 25px;
                                    padding: 25px;
                                }



               Margin + Padding
Tuesday, April 16, 13
300px                     300px                      300px

     25                                 25   25                    225                     2
                                                                         2




                              360px                     360px                      360px

                                                                                   410px



                                                                             padding: 25px;
                        margin: 25px;             padding: 25px;
                                                                             margin: 25px;




               Compare padding & margin
Tuesday, April 16, 13
Margin + Border + Padding + (content) Width




                                                        content
                                           This is my 300px paragraph. It has
                                           20x of padding, 50px of margin and
                                 padding
                                 border




                                                                                          border
                        margin




                                                                                                   margin
                                                                                         padding
                                           a 10px border.



                                                50 + 10 + 20 + 300 + 20 + 10 + 50
                                                                =
                                                              460px
Tuesday, April 16, 13
boxes1-1.html
Tuesday, April 16, 13
Tuesday, April 16, 13
400px




Tuesday, April 16, 13
h1, h2, p, blockquote{
                             width: 400px;
                             background-color: #cccccc;
                        }	





Tuesday, April 16, 13
Tuesday, April 16, 13
h2{
                              margin-top: 0;
                              margin-bottom: 5px;
                              margin-left: 0;
                              margin-right: 0;

                              padding: 0;
                        }
                        	

                        	

                        .date, .byline{
                        	

   margin: 0;
                              	

                              padding: 0;
                        }




Tuesday, April 16, 13
5px
                                10px
                          5px   10px




Tuesday, April 16, 13
blockquote{
                             margin-left: 10px;
                             padding-left: 5px;
                             border-left: 5px solid #000000;
                             padding-top: 10px;
                             padding-bottom: 10px;
                        }




Tuesday, April 16, 13
Tuesday, April 16, 13
400px




                                       400px
                        10       5


                             5




Tuesday, April 16, 13
blockquote{
                             margin-left: 10px;
                             padding-left: 5px;
                             border-left: 5px solid #000000;
                             padding-top: 10px;
                             padding-bottom: 10px;
                             width: 380px;
                        }




Tuesday, April 16, 13
blockquote{
                             margin-left: 10px;
                             padding-left: 5px;
                             border-left: 5px solid #000000;
                             padding-top: 10px;
                             padding-bottom: 10px;
                             width: 380px;
                        }

                        blockquote:first-letter{
                             font-size: 1.9em;
                        }




Tuesday, April 16, 13
boxes2-1.html
Tuesday, April 16, 13
Tuesday, April 16, 13
header




                  content




                   footer




Tuesday, April 16, 13
header
                             #nav




                   article




                   footer

                                    wrapper




Tuesday, April 16, 13
<body>                            header
                                                       #nav
          <div id=”wrapper”>
            <header>
              <h1>North Gate</h1>
              <div id=”nav”> UL ...</div>
            </header>                     article


                  <article> .... </article>

                  <footer>...</footer>
                                              footer

          </div>                                              wrapper
        </body>




Tuesday, April 16, 13
#wrapper{
              width: 700px;
              background-color: #ffffff;
              margin: 10px auto 30px auto;
           }




Tuesday, April 16, 13
Sometimes you want a box to
                               not be a box




Tuesday, April 16, 13
What if LI could be inline?

Tuesday, April 16, 13
What if LI could be inline?

Tuesday, April 16, 13
#nav ul, #nav li {
                   margin: 0;
                   padding: 0;
                   list-style: none;
               }

               #nav ul {
                   background-color: #000000;
                   margin-top: 10px;
                   margin-bottom: 10px;
               }

               #nav li {
                   display: inline;
                   color: #FFF;
                   padding-left: 10px;
                   line-height: 25px;
               }


Tuesday, April 16, 13
Designing on a Grid



Tuesday, April 16, 13
Building On A Grid




Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Margin + Border + Padding + (content) Width


Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
<body>
      <div id=”wrapper”>
        <div id=”header”>
           <h1>North Gate</h1>
           <div id=”nav”> UL ...</div>
        </div>

              <div id=”content”> .... </div>

              <div id=”sidebar”> .... </div>

        <div id=”footer”>...</div>
      </div>
    </body>




Tuesday, April 16, 13
<body>
      <div id=”wrapper”>
        <div id=”header”>
           <h1>North Gate</h1>
           <div id=”nav”> UL ...</div>
        </div>

              <div id=”content”> .... </div>

              <div id=”sidebar”> .... </div>

        <div id=”footer”>...</div>
      </div>
    </body>




Tuesday, April 16, 13
<body>
      <div id=”wrapper”>
        <div id=”header”>
           <h1>North Gate</h1>
           <div id=”nav”> UL ...</div>
        </div>

              <div id=”content”> .... </div>

              <div id=”sidebar”> .... </div>

              <div id=”footer”>...</div>

      </div>
    </body>




Tuesday, April 16, 13
<body>
      <div id=”wrapper”>
        <div id=”header”>
           <h1>North Gate</h1>
           <div id=”nav”> UL ...</div>
        </div>

              <div id=”content”>
                <div id=”article-inline”>
                   <h3>MacArthur</h3>
                 </div>
                <p>lorem</p>
              </div>

              <div id=”sidebar”> .... </div>




Tuesday, April 16, 13
<body>
      <div id=”wrapper”>
        <div id=”header”>
           <h1>North Gate</h1>
           <div id=”nav”> UL ...</div>
        </div>

              <div id=”content”> .... </div>

              <div id=”sidebar”> .... </div>

              <div id=”footer”>...</div>

      </div>
    </body>




Tuesday, April 16, 13
How wide?




Tuesday, April 16, 13
How wide?




Tuesday, April 16, 13
How wide?




Tuesday, April 16, 13
How wide?




Tuesday, April 16, 13
No Consistency
Tuesday, April 16, 13
No Consistency
Tuesday, April 16, 13
Consistency
Tuesday, April 16, 13
How wide?




Tuesday, April 16, 13
BTW, is that margin


   on the #content?

   on the #sidebar?

   on both?




Tuesday, April 16, 13
BTW, is that margin or padding


   on the #content?

   on the #sidebar?

   on both?




Tuesday, April 16, 13
I propose a tradeoff



Tuesday, April 16, 13
Let me take away a little of your flexibility
              and I’ll answer a lot of those questions.



Tuesday, April 16, 13
Tuesday, April 16, 13
                        GRID
Tuesday, April 16, 13
940px
                         620px                          300px


                  10px                                    10px

                                                 20px




                                         220px
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
How it works



Tuesday, April 16, 13
940px




Tuesday, April 16, 13
940? 960?



Tuesday, April 16, 13
width=940px
                        margin-left: 10px
                        margin-right: 10px


                        940 + 10 + 10 = 960



Tuesday, April 16, 13
940px


                        10           10




Tuesday, April 16, 13
12 column layout




                        60px         20px




Tuesday, April 16, 13
5 columns                                               7 columns

                                    380px                                                   540px
            60          20   60    20   60   20   60   20   60   60   20   60   20   60    20   60   20   60   20   60   20   60




Tuesday, April 16, 13
5 columns                                               7 columns
                                                                                5 columns                           2 col
                                    380px
            60          20   60    20   60   20   60   20   60
                                                                                     380px                          140px
                                                                 60   20   60   20   60    20   60   20   60   60     20    60




                                                                                                 540px



Tuesday, April 16, 13
5 columns

                                       380px




                        Your boxes must go to the lines, not the gutters

Tuesday, April 16, 13
Many Grids to Choose From



Tuesday, April 16, 13
Tuesday, April 16, 13
Tuesday, April 16, 13
cascade is the “C” in




                           CSS
Tuesday, April 16, 13
Tuesday, April 16, 13
body {
                          background-color: #ffffff;
                        }



Tuesday, April 16, 13
unless told otherwise, a child element inherits
                        applicable rules from its parents




Tuesday, April 16, 13
body{
          	 background-color: #ffffff;
          }


Tuesday, April 16, 13
<body>
                          <p>Because this paragraph is inside the body tag (like all page elements) it inherits the
                          text properties of the body. </p>
                        </body>




Tuesday, April 16, 13
But what about the other element
           backgrounds that aren’t white?

Tuesday, April 16, 13
#header{                       #nav{
          	 background-color: #F3F5F9;   	 background-color: #CBD7E7;
          }                              }

Tuesday, April 16, 13
Now add a link and see what happens




Tuesday, April 16, 13
body {
                          color: #FF0000;
                          font-size: 15px;
                        }

                        p{
                             font-size: 10px;
                        }

                        a{
                             color: #0000FF;
                        }




Tuesday, April 16, 13
specific
                             ity
Tuesday, April 16, 13
p{
                             color: #FF0000;
                             background-color: #000000;
                        }




                        Unless a more specific rule applies to a
                        paragraph, this “type” selector defines how all
                        paragraphs in your document will look.




Tuesday, April 16, 13
.alert {
                               color: #00FF00;
                               background-color: #0000FF;
                           }




                        <p class=“alert”>
                          This is a paragraph with the “alert” class rules applied to it.
                          Where its rules conflict with a less specific “type” selector, the
                          class selector takes precedence.
                        </p>




Tuesday, April 16, 13
selectors2.html




Tuesday, April 16, 13
CSS Selectors have weight

                          High Value                         Low Value              Tie Breaker




                              ID       |    Class |   Type               Position


                           (#nav)             (.byline)            (p)



                        SELECTOR CONFLICTS
                        CSS SELECTORS

Tuesday, April 16, 13

Mais conteúdo relacionado

Último

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 

Último (20)

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 

Destaque

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destaque (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

CSS Page Design

  • 2. The Web is made of boxes Tuesday, April 16, 13
  • 3. Boxes inside of boxes Tuesday, April 16, 13
  • 4. Boxes inside of boxes Tuesday, April 16, 13
  • 5. Boxes inside of boxes Tuesday, April 16, 13
  • 6. Boxes inside of boxes Tuesday, April 16, 13
  • 7. What do we already know about boxes? Tuesday, April 16, 13
  • 8. (Block-level elements are boxes) Tuesday, April 16, 13
  • 9. Headers (h1 - h6) Tuesday, April 16, 13
  • 12. Any observations about boxes? Tuesday, April 16, 13
  • 13. Boxes take up space By default they • inherit their width • inherit their height • inherit their padding • inherit their margin • have no borders, but can Tuesday, April 16, 13
  • 14. Boxes take up space By default they • inherit their width • inherit their height • inherit their padding • inherit their margin • have no borders, but can Tuesday, April 16, 13
  • 15. Boxes take up space By default they • inherit their width • inherit their height • inherit their padding • inherit their margin • have no borders, but can Tuesday, April 16, 13
  • 16. Boxes take up space By default they • inherit their width • inherit their height • inherit their padding • inherit their margin • have no borders, but can Tuesday, April 16, 13
  • 17. Boxes take up space By default they • inherit their width • inherit their height • inherit their padding • inherit their margin • have no borders, but can Tuesday, April 16, 13
  • 18. Terminology ome m at h!) (and s boxes.html Tuesday, April 16, 13
  • 19. 300px p{ width: 300px; } Width Tuesday, April 16, 13
  • 20. 310px 300px 5px 5px p{ width: 300px; border: 5px solid #000000; } Border Tuesday, April 16, 13
  • 21. 300px 5px 5px 25 25 360px p{ width: 300px; border: 5px solid #000000; padding: 25px; } Padding Tuesday, April 16, 13
  • 22. padding: 25px; padding: 25px 25px 25px 25px; 25 25 padding-top: 25px; padding-right: 25px; padding-bottom: 25px; padding-left: 25px; Tuesday, April 16, 13
  • 23. 300px 5px 5px 25 25 25 360px p{ width: 300px; border: 5px solid #000000; margin: 25px; } Margin Tuesday, April 16, 13
  • 24. 25 25 25 25 360px 360px margin: 25px; padding: 25px; Margin Padding Tuesday, April 16, 13
  • 25. 300px 5px 5px 25 25 25 360px 410px p{ width: 300px; border: 5px solid #000000; margin: 25px; padding: 25px; } Margin + Padding Tuesday, April 16, 13
  • 26. 300px 300px 300px 25 25 25 225 2 2 360px 360px 360px 410px padding: 25px; margin: 25px; padding: 25px; margin: 25px; Compare padding & margin Tuesday, April 16, 13
  • 27. Margin + Border + Padding + (content) Width content This is my 300px paragraph. It has 20x of padding, 50px of margin and padding border border margin margin padding a 10px border. 50 + 10 + 20 + 300 + 20 + 10 + 50 = 460px Tuesday, April 16, 13
  • 31. h1, h2, p, blockquote{ width: 400px; background-color: #cccccc; } Tuesday, April 16, 13
  • 33. h2{ margin-top: 0; margin-bottom: 5px; margin-left: 0; margin-right: 0; padding: 0; } .date, .byline{ margin: 0; padding: 0; } Tuesday, April 16, 13
  • 34. 5px 10px 5px 10px Tuesday, April 16, 13
  • 35. blockquote{ margin-left: 10px; padding-left: 5px; border-left: 5px solid #000000; padding-top: 10px; padding-bottom: 10px; } Tuesday, April 16, 13
  • 37. 400px 400px 10 5 5 Tuesday, April 16, 13
  • 38. blockquote{ margin-left: 10px; padding-left: 5px; border-left: 5px solid #000000; padding-top: 10px; padding-bottom: 10px; width: 380px; } Tuesday, April 16, 13
  • 39. blockquote{ margin-left: 10px; padding-left: 5px; border-left: 5px solid #000000; padding-top: 10px; padding-bottom: 10px; width: 380px; } blockquote:first-letter{ font-size: 1.9em; } Tuesday, April 16, 13
  • 42. header content footer Tuesday, April 16, 13
  • 43. header #nav article footer wrapper Tuesday, April 16, 13
  • 44. <body> header #nav <div id=”wrapper”> <header> <h1>North Gate</h1> <div id=”nav”> UL ...</div> </header> article <article> .... </article> <footer>...</footer> footer </div> wrapper </body> Tuesday, April 16, 13
  • 45. #wrapper{ width: 700px; background-color: #ffffff; margin: 10px auto 30px auto; } Tuesday, April 16, 13
  • 46. Sometimes you want a box to not be a box Tuesday, April 16, 13
  • 47. What if LI could be inline? Tuesday, April 16, 13
  • 48. What if LI could be inline? Tuesday, April 16, 13
  • 49. #nav ul, #nav li { margin: 0; padding: 0; list-style: none; } #nav ul { background-color: #000000; margin-top: 10px; margin-bottom: 10px; } #nav li { display: inline; color: #FFF; padding-left: 10px; line-height: 25px; } Tuesday, April 16, 13
  • 50. Designing on a Grid Tuesday, April 16, 13
  • 51. Building On A Grid Tuesday, April 16, 13
  • 55. Margin + Border + Padding + (content) Width Tuesday, April 16, 13
  • 58. <body> <div id=”wrapper”> <div id=”header”> <h1>North Gate</h1> <div id=”nav”> UL ...</div> </div> <div id=”content”> .... </div> <div id=”sidebar”> .... </div> <div id=”footer”>...</div> </div> </body> Tuesday, April 16, 13
  • 59. <body> <div id=”wrapper”> <div id=”header”> <h1>North Gate</h1> <div id=”nav”> UL ...</div> </div> <div id=”content”> .... </div> <div id=”sidebar”> .... </div> <div id=”footer”>...</div> </div> </body> Tuesday, April 16, 13
  • 60. <body> <div id=”wrapper”> <div id=”header”> <h1>North Gate</h1> <div id=”nav”> UL ...</div> </div> <div id=”content”> .... </div> <div id=”sidebar”> .... </div> <div id=”footer”>...</div> </div> </body> Tuesday, April 16, 13
  • 61. <body> <div id=”wrapper”> <div id=”header”> <h1>North Gate</h1> <div id=”nav”> UL ...</div> </div> <div id=”content”> <div id=”article-inline”> <h3>MacArthur</h3> </div> <p>lorem</p> </div> <div id=”sidebar”> .... </div> Tuesday, April 16, 13
  • 62. <body> <div id=”wrapper”> <div id=”header”> <h1>North Gate</h1> <div id=”nav”> UL ...</div> </div> <div id=”content”> .... </div> <div id=”sidebar”> .... </div> <div id=”footer”>...</div> </div> </body> Tuesday, April 16, 13
  • 71. BTW, is that margin on the #content? on the #sidebar? on both? Tuesday, April 16, 13
  • 72. BTW, is that margin or padding on the #content? on the #sidebar? on both? Tuesday, April 16, 13
  • 73. I propose a tradeoff Tuesday, April 16, 13
  • 74. Let me take away a little of your flexibility and I’ll answer a lot of those questions. Tuesday, April 16, 13
  • 77. 940px 620px 300px 10px 10px 20px 220px Tuesday, April 16, 13
  • 90. How it works Tuesday, April 16, 13
  • 93. width=940px margin-left: 10px margin-right: 10px 940 + 10 + 10 = 960 Tuesday, April 16, 13
  • 94. 940px 10 10 Tuesday, April 16, 13
  • 95. 12 column layout 60px 20px Tuesday, April 16, 13
  • 96. 5 columns 7 columns 380px 540px 60 20 60 20 60 20 60 20 60 60 20 60 20 60 20 60 20 60 20 60 20 60 Tuesday, April 16, 13
  • 97. 5 columns 7 columns 5 columns 2 col 380px 60 20 60 20 60 20 60 20 60 380px 140px 60 20 60 20 60 20 60 20 60 60 20 60 540px Tuesday, April 16, 13
  • 98. 5 columns 380px Your boxes must go to the lines, not the gutters Tuesday, April 16, 13
  • 99. Many Grids to Choose From Tuesday, April 16, 13
  • 102. cascade is the “C” in CSS Tuesday, April 16, 13
  • 104. body { background-color: #ffffff; } Tuesday, April 16, 13
  • 105. unless told otherwise, a child element inherits applicable rules from its parents Tuesday, April 16, 13
  • 106. body{ background-color: #ffffff; } Tuesday, April 16, 13
  • 107. <body> <p>Because this paragraph is inside the body tag (like all page elements) it inherits the text properties of the body. </p> </body> Tuesday, April 16, 13
  • 108. But what about the other element backgrounds that aren’t white? Tuesday, April 16, 13
  • 109. #header{ #nav{ background-color: #F3F5F9; background-color: #CBD7E7; } } Tuesday, April 16, 13
  • 110. Now add a link and see what happens Tuesday, April 16, 13
  • 111. body { color: #FF0000; font-size: 15px; } p{ font-size: 10px; } a{ color: #0000FF; } Tuesday, April 16, 13
  • 112. specific ity Tuesday, April 16, 13
  • 113. p{ color: #FF0000; background-color: #000000; } Unless a more specific rule applies to a paragraph, this “type” selector defines how all paragraphs in your document will look. Tuesday, April 16, 13
  • 114. .alert { color: #00FF00; background-color: #0000FF; } <p class=“alert”> This is a paragraph with the “alert” class rules applied to it. Where its rules conflict with a less specific “type” selector, the class selector takes precedence. </p> Tuesday, April 16, 13
  • 116. CSS Selectors have weight High Value Low Value Tie Breaker ID | Class | Type Position (#nav) (.byline) (p) SELECTOR CONFLICTS CSS SELECTORS Tuesday, April 16, 13