SlideShare una empresa de Scribd logo
1 de 116
Descargar para leer sin conexión
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

Más contenido relacionado

Último

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 

Último (20)

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 

Destacado

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
 

Destacado (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