SlideShare a Scribd company logo
Demystifying CSS &
   WordPress
          by Justin Carmony
About Me
• CTO of Dating DNA
• CIO of CEVO
• Web Development
 • Hobbyist Since 1997
 • Professional Since 2005
• http://www.justincarmony.com/blog/
Let’s Do A Quick
      Survey!
How Much About CSS Do You Know?



     None? A Little?
        A Lot?
Lets Start With...


My Favorite Topic
Why People


Hate CSS
Why Can’t Browsers Just Get Along?
h1 a,
                                                 h2 a,
html, body, div, span, applet, object, iframe,   h3 a,
                                                 h4 a,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,      h5 a,
a, abbr, acronym, address, big, cite, code,      h6 a,
                                                 h1 a:visited,
del, dfn, em, font, img, ins, kbd, q, s, samp,   h2 a:visited,
small, strike, strong, sub, sup, tt, var,        h3 a:visited,
                                                 h4 a:visited,
b, u, i, center,                                 h5 a:visited,
                                                 h6 a:visited {
dl, dt, dd, ol, ul, li,                          
     color: #51555c;
fieldset, form, label, legend,                   }
                                                 h1 a:hover,
hr{                                              h2 a:hover,

 margin: 0;                                     h3 a:hover,
                                                 h4 a:hover,

 padding: 0;                                    h5 a:hover,

 border: 0;                                     h6 a:hover {
                                                 
     color: #a00004;

 outline: 0;                                    
     text-decoration: none;
                                                 }

 font-size: 100%;                               /* elements with title attribute */

 vertical-align: baseline;                      abbr[title],
                                                 acronym[title],

 background: transparent;                       dfn[title],
}                                                span[title],
                                                 del[title] {
blockquote, q {                                  
     cursor: help;

 quotes: none;                                  }
                                                 /* typogrify: inset initial double quotes. */
}                                                .dquo {
                                                 
     margin-left: -.45em;
blockquote:before, blockquote:after,             }
q:before, q:after {                                /* fancy ampersands */
                                                 .amp {

 content: '';                                   
     font-family: Baskerville, "Goudy Old Style", "Palatino", "Boo

 content: none;                                 Antiqua", serif;
                                                 
     font-size: 13px;
}                                                
     font-style: italic;
:focus {                                         }
                                                 /* Font sizes and vertical measure */

 outline: 0;                                    h1,
                                                 h2,
}                                                h3,

                                                               What the Heck Is This?
cite,                                            h4,
                                                 h5,
address {                                        h6,

 display:inline;                                .h1,
                                                 .h2,

 font-style:normal;                             .h3 {
}                                                
     display:block;
                                                 
     margin-bottom:9px;
                                                 }
Sometimes It Is...


User Error
Lots of People Just

Give Up
Don’t Give Up!
You can get passed it!
The Solution:

Better Understanding
     of CSS
First Topic:


 Selectors
selector types
p { margin:10px 0 10px 0; } /* Element */

.header { width:1000px; } /* Class */

#footer { padding:10px; } /* ID */

a:visited { color:#0016ff; } /* Pseudo Class */

h1:before { margin-bottom:0px; } /* Pseudo Element */
Let’s Practice!
attendee { mouth:smiling; }

.blogger { right-hand:raised; }

.developer { left-hand:raised; }

speaker { currently: “Laughing as he controls the
audience! Mwuahahaha!”; }
Which Rule to Rule Them All?


 * { color:black; }

 a { color:blue; }

 #content a { color:red; }

 html body article .entry-post a { color: green; }
Commonly Misunderstood:


CSS Specificity
Specificity Definition:

  Selector specificity is a process used to
 determine which rules take precedence in
CSS when several rules could be applied to
       the same element in markup.
Specificity Hierarchy
1. Inline styles
       (i.e. <div style=“font-weight:bold;”>)
2. ID Selectors
       (i.e. #header, #footer )
3. Class Selectors
       (i.e. .blogger, .selected )
4. Element Selectors
       (i.e. blockquote, div )
Calculating Specificity
            Start With Value: 0,0,0,0

     Element Selector               Class Selector
     Value: 0,0,0,1                 Value: 0,0,1,0
     Example: div                   Example: .vador


                        ID Selector
                        Value: 0,1,0,0
                        Example: #header
Calculating Specificity
          Which is Greater?

        0,0,0,1   >   0,0,0,0
        0,0,0,2   >   0,0,0,1
        0,0,1,0   >   0,0,0,15
        0,2,0,0   >   0,1,99,99
Demystifying CSS & WordPress
Specificity Hierarchy

1. Equal Specificity - Use Last Rule
     html p { color:red; }
     div p { color: blue; } /* Will Use This One */

2. Unequal Specificity - Use More Specific Rule
     #content h1 { font-size: 30px; } /* Will Use */
     body h1 { font-size:20px; }
Don’t Panic!


 Tools To Help You:

    FireBug - FireFox
Developer Tools - Chrome
Demystifying CSS & WordPress
Any

Questions
About Specificity?
Second Topic:



The Box Model
Two Basic Display Types:


Inline & Block
Inline



* { display:inline; }
Block



* { display:block; }
The Box Model




                Pretty Straight Forward
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  color:#FF0000;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  color:#FF0000;
  font-size:28px;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  background:#FF0000;
  font-size:28px;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  background:#FF0000;
  font-size:28px;
  width:200px;
  height:200px;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  background:#FF0000;
  font-size:28px;
  width:200px;
  height:200px;
  padding:20px;
}
Commonly
 Misunderstood:


Width, Height, & Padding
The Box Model
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  background:#FF0000;
  font-size:28px;
  width:200px;
  height:200px;
  padding:20px;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  background:#FF0000;
  font-size:28px;
  width:200px;
  height:200px;
  padding:20px;
  border: #000000 solid 5px;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  background:#FF0000;
  font-size:28px;
  width:100%;
  height:200px;
  padding:20px;
  border: #000000 solid 5px;
}
Commonly
Misunderstood:


100% Width
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  background:#FF0000;
  font-size:28px;
  width:100%;
  height:200px;
  padding:20px;
  border: #000000 solid 5px;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
.hello {
  background:#FF0000;
  font-size:28px;
  height:200px;
  padding:20px;
  border: #000000 solid 5px;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
* { margin: 0; padding: 0; }
.hello {
  background:#FF0000;
  font-size:28px;
  height:200px;
  padding:20px;
  border: #0000FF solid 5px;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
* { margin: 0; padding: 0; }
.hello {
  background:#FF0000;
  font-size:28px;
  height:200px;
  padding:20px;
  border: #0000FF solid 5px;
  margin: 20px 10px 20px 10px;
}
HTML:
<div class=“hello”>
Hello World!
</div>

CSS:
* { margin: 0; padding: 0; }
.hello {
  background:#FF0000;
  font-size:28px;
  height:100px;
  padding:20px;
  border: #0000FF solid 5px;
  margin: 20px 10px 20px 10px;
}
HTML:
<div class=“hello”>Hello
World!</div>
<div class=“hello”>Hello
World!</div>

CSS:
* { margin: 0; padding: 0; }
.hello {
  background:#FF0000;
  font-size:28px;
  height:100px;
  padding:20px;
  border: #0000FF solid 5px;
  margin: 20px 10px 20px 10px;
}
Commonly Misunderstood:


Margin Collapse
Margin Collapse
Margin Collapse
This is a
Good Thing!
              But...
What You Think Should Happen



   #masthead { background: #FF8800; margin: 10px; }
   #masthead h1 { margin: 20px 10px; }
   #masthead p { margin: 5px 10px; font-style: italic; }
What Actually Happens



  #masthead { background: #FF8800; margin: 10px; }
  #masthead h1 { margin: 20px 10px; }
  #masthead p { margin: 5px 10px; font-style: italic; }
Rule of Thumb:


Use Padding Instead
 of Margin Where
     Possible
Use Margins When
 You Want Them
   To Collapse
Any

Questions
About the Box Model?
Third Topic:



Floating Elements
Normal Flow
HTML:                             CSS:
<div class="container">           * { margin:0; padding:0; }
  <div class="box one"></div>     body { margin:20px; }
  <div class="box two"></div>     .container { padding:20px;
  <div class="box three"></div>      background:#7acfff; }
</div>                            .box { width:100px;
                                     height:100px; }
                                  .one { background:red; }
                                  .two { background:green; }
                                  .three { background:blue; }
Normal Flow
CSS:
* { margin:0; padding:0; }
body { margin:20px; }
.container { padding:20px;
   background:#7acfff; }
.box { width:100px;
   height:100px; }
.one { background:red; }
.two { background:green; }
.three { background:blue; }
Floating Properties
1. The “float” attribute can have values of “right, left, inherit, and
   none.”

2. The block element will shift to the left or right of the content.

3. The parent element’s content will flow around the element
   (unless they use the “clear” attribute).

4. The floated element is removed from the Normal Flow.
Floating One
CSS:
* { margin:0; padding:0; }
body { margin:20px; }
.container { padding:20px;
   background:#7acfff; }
.box { width:100px;
   height:100px; }
.one { background:red;
   float:right; }
.two { background:green; }
.three { background:blue; }
Floating Two
CSS:
* { margin:0; padding:0; }
body { margin:20px; }
.container { padding:20px;
   background:#7acfff; }
.box { width:100px;
   height:100px; }
.one { background:red;
   float:right; }
.two { background:green; }
.three { background:blue;
   float:right; }
Floating Three
CSS:
* { margin:0; padding:0; }
body { margin:20px; }
.container { padding:20px;
   background:#7acfff; }
.box { width:100px;
   height:100px; }
.one { background:red;
   float:right; }
.two { background:green;
   float:left; }
.three { background:blue;
   float:right; }
Normal Flow
   HTML:
   <div class="container">
     <div class="box one"></div>
     <div class="box two"></div>
     <div class="box three"></div>
     <div class="clear"></div>
   </div>
Clearing the End
CSS:
* { margin:0; padding:0; }
body { margin:20px; }
.container { padding:20px;
   background:#7acfff; }
.box { width:100px;
   height:100px; }
.one { background:red;
   float:right; }
.two { background:green;
   float:left; }
.three { background:blue;
   float:right; }
.clear { clear:both; }
Using Clear
CSS:
* { margin:0; padding:0; }
body { margin:20px; }
.container { padding:20px;
   background:#7acfff; }
.box { width:100px;
   height:100px; }
.one { background:red;
   float:right; }
.two { background:green;
   float:left; }
.three { background:blue;
   float:right; clear:right; }
.clear { clear:both; }
Any

Questions
About Floating?
Other Misconceptions
Element Positions
Vertical & Horizontal


Centering
Ok, One More Thing...
Using This With


WordPress
If You Blog Using...


WordPress.com
If You Blog Using...


Self-Hosted WP
Final Thoughts
Recommended Book
Validate Your CSS!
Articles & Resources
                 @
   http://justincarmony.com/css




Additional Info
Thank You!

    Twitter: JustinCarmony

       IRC: carmony @ #uphpu on freenode

     Email: justin@justincarmony.com

   My Blog: http://justincarmony.com/blog/

More Related Content

Similar to Demystifying CSS & WordPress (20)

Introdução a CSS
Introdução a CSS Introdução a CSS
Introdução a CSS
Tiago Santos
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Amit Tyagi
 
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Tom Hapgood
 
CSS Quick Reference / Cheat Sheet - Scott DeLoach, ClickStart
CSS Quick Reference / Cheat Sheet - Scott DeLoach, ClickStartCSS Quick Reference / Cheat Sheet - Scott DeLoach, ClickStart
CSS Quick Reference / Cheat Sheet - Scott DeLoach, ClickStart
Scott DeLoach
 
Css 1
Css 1Css 1
Css 1
H K
 
Cascade.ss
Cascade.ssCascade.ss
Cascade.ss
baabtra.com - No. 1 supplier of quality freshers
 
Hammersmith fundamentals html fundamentals
Hammersmith fundamentals   html fundamentalsHammersmith fundamentals   html fundamentals
Hammersmith fundamentals html fundamentals
Mike Bradshaw
 
Cascading Style Sheets - Part 01
Cascading Style Sheets - Part 01Cascading Style Sheets - Part 01
Cascading Style Sheets - Part 01
Hatem Mahmoud
 
Html n CSS
Html n CSSHtml n CSS
Html n CSS
Sukrit Gupta
 
HTML Lesson HTML FormsHTML Formsvv4.pptx
HTML Lesson HTML FormsHTML Formsvv4.pptxHTML Lesson HTML FormsHTML Formsvv4.pptx
HTML Lesson HTML FormsHTML Formsvv4.pptx
gacayte0906
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
Div Tag Tutorial
Div Tag TutorialDiv Tag Tutorial
Div Tag Tutorial
bav123
 
Basic HTML & CSS
Basic HTML & CSSBasic HTML & CSS
Basic HTML & CSS
John Nelson
 
Html5 & CSS overview
Html5 & CSS overviewHtml5 & CSS overview
Html5 & CSS overview
Ivan Frantar
 
6_CasCadingStylesSheetsCSS.ppt
6_CasCadingStylesSheetsCSS.ppt6_CasCadingStylesSheetsCSS.ppt
6_CasCadingStylesSheetsCSS.ppt
VARNITBHASKAR1
 
Css 101
Css 101Css 101
Css 101
Rhyan Mahazudin
 
ARTDM 171, Week 5: CSS
ARTDM 171, Week 5: CSSARTDM 171, Week 5: CSS
ARTDM 171, Week 5: CSS
Gilbert Guerrero
 
Intro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 SlidesIntro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 Slides
Heather Rock
 
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
Introdução a CSS
Introdução a CSS Introdução a CSS
Introdução a CSS
Tiago Santos
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Amit Tyagi
 
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Tom Hapgood
 
CSS Quick Reference / Cheat Sheet - Scott DeLoach, ClickStart
CSS Quick Reference / Cheat Sheet - Scott DeLoach, ClickStartCSS Quick Reference / Cheat Sheet - Scott DeLoach, ClickStart
CSS Quick Reference / Cheat Sheet - Scott DeLoach, ClickStart
Scott DeLoach
 
Css 1
Css 1Css 1
Css 1
H K
 
Hammersmith fundamentals html fundamentals
Hammersmith fundamentals   html fundamentalsHammersmith fundamentals   html fundamentals
Hammersmith fundamentals html fundamentals
Mike Bradshaw
 
Cascading Style Sheets - Part 01
Cascading Style Sheets - Part 01Cascading Style Sheets - Part 01
Cascading Style Sheets - Part 01
Hatem Mahmoud
 
HTML Lesson HTML FormsHTML Formsvv4.pptx
HTML Lesson HTML FormsHTML Formsvv4.pptxHTML Lesson HTML FormsHTML Formsvv4.pptx
HTML Lesson HTML FormsHTML Formsvv4.pptx
gacayte0906
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
Div Tag Tutorial
Div Tag TutorialDiv Tag Tutorial
Div Tag Tutorial
bav123
 
Basic HTML & CSS
Basic HTML & CSSBasic HTML & CSS
Basic HTML & CSS
John Nelson
 
Html5 & CSS overview
Html5 & CSS overviewHtml5 & CSS overview
Html5 & CSS overview
Ivan Frantar
 
6_CasCadingStylesSheetsCSS.ppt
6_CasCadingStylesSheetsCSS.ppt6_CasCadingStylesSheetsCSS.ppt
6_CasCadingStylesSheetsCSS.ppt
VARNITBHASKAR1
 
Intro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 SlidesIntro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 Slides
Heather Rock
 
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 

Recently uploaded (20)

ECS25 - The adventures of a Microsoft 365 Platform Owner - Website.pptx
ECS25 - The adventures of a Microsoft 365 Platform Owner - Website.pptxECS25 - The adventures of a Microsoft 365 Platform Owner - Website.pptx
ECS25 - The adventures of a Microsoft 365 Platform Owner - Website.pptx
Jasper Oosterveld
 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevExImproving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
 
Grannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI ExperiencesGrannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI Experiences
Lauren Parr
 
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk TechniciansOffshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
john823664
 
AI Emotional Actors: “When Machines Learn to Feel and Perform"
AI Emotional Actors:  “When Machines Learn to Feel and Perform"AI Emotional Actors:  “When Machines Learn to Feel and Perform"
AI Emotional Actors: “When Machines Learn to Feel and Perform"
AkashKumar809858
 
Cognitive Chasms - A Typology of GenAI Failure Failure Modes
Cognitive Chasms - A Typology of GenAI Failure Failure ModesCognitive Chasms - A Typology of GenAI Failure Failure Modes
Cognitive Chasms - A Typology of GenAI Failure Failure Modes
Dr. Tathagat Varma
 
Cyber Security Legal Framework in Nepal.pptx
Cyber Security Legal Framework in Nepal.pptxCyber Security Legal Framework in Nepal.pptx
Cyber Security Legal Framework in Nepal.pptx
Ghimire B.R.
 
Measuring Microsoft 365 Copilot and Gen AI Success
Measuring Microsoft 365 Copilot and Gen AI SuccessMeasuring Microsoft 365 Copilot and Gen AI Success
Measuring Microsoft 365 Copilot and Gen AI Success
Nikki Chapple
 
Supercharge Your AI Development with Local LLMs
Supercharge Your AI Development with Local LLMsSupercharge Your AI Development with Local LLMs
Supercharge Your AI Development with Local LLMs
Francesco Corti
 
Jira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : IntroductionJira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : Introduction
Ravi Teja
 
Evaluation Challenges in Using Generative AI for Science & Technical Content
Evaluation Challenges in Using Generative AI for Science & Technical ContentEvaluation Challenges in Using Generative AI for Science & Technical Content
Evaluation Challenges in Using Generative AI for Science & Technical Content
Paul Groth
 
Dev Dives: System-to-system integration with UiPath API Workflows
Dev Dives: System-to-system integration with UiPath API WorkflowsDev Dives: System-to-system integration with UiPath API Workflows
Dev Dives: System-to-system integration with UiPath API Workflows
UiPathCommunity
 
New Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDBNew Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDB
ScyllaDB
 
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Nikki Chapple
 
Palo Alto Networks Cybersecurity Foundation
Palo Alto Networks Cybersecurity FoundationPalo Alto Networks Cybersecurity Foundation
Palo Alto Networks Cybersecurity Foundation
VICTOR MAESTRE RAMIREZ
 
Contributing to WordPress With & Without Code.pptx
Contributing to WordPress With & Without Code.pptxContributing to WordPress With & Without Code.pptx
Contributing to WordPress With & Without Code.pptx
Patrick Lumumba
 
End-to-end Assurance for SD-WAN & SASE with ThousandEyes
End-to-end Assurance for SD-WAN & SASE with ThousandEyesEnd-to-end Assurance for SD-WAN & SASE with ThousandEyes
End-to-end Assurance for SD-WAN & SASE with ThousandEyes
ThousandEyes
 
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
James Anderson
 
Microsoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentationMicrosoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentation
Digitalmara
 
Droidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing HealthcareDroidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing Healthcare
Droidal LLC
 
ECS25 - The adventures of a Microsoft 365 Platform Owner - Website.pptx
ECS25 - The adventures of a Microsoft 365 Platform Owner - Website.pptxECS25 - The adventures of a Microsoft 365 Platform Owner - Website.pptx
ECS25 - The adventures of a Microsoft 365 Platform Owner - Website.pptx
Jasper Oosterveld
 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevExImproving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
 
Grannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI ExperiencesGrannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI Experiences
Lauren Parr
 
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk TechniciansOffshore IT Support: Balancing In-House and Offshore Help Desk Technicians
Offshore IT Support: Balancing In-House and Offshore Help Desk Technicians
john823664
 
AI Emotional Actors: “When Machines Learn to Feel and Perform"
AI Emotional Actors:  “When Machines Learn to Feel and Perform"AI Emotional Actors:  “When Machines Learn to Feel and Perform"
AI Emotional Actors: “When Machines Learn to Feel and Perform"
AkashKumar809858
 
Cognitive Chasms - A Typology of GenAI Failure Failure Modes
Cognitive Chasms - A Typology of GenAI Failure Failure ModesCognitive Chasms - A Typology of GenAI Failure Failure Modes
Cognitive Chasms - A Typology of GenAI Failure Failure Modes
Dr. Tathagat Varma
 
Cyber Security Legal Framework in Nepal.pptx
Cyber Security Legal Framework in Nepal.pptxCyber Security Legal Framework in Nepal.pptx
Cyber Security Legal Framework in Nepal.pptx
Ghimire B.R.
 
Measuring Microsoft 365 Copilot and Gen AI Success
Measuring Microsoft 365 Copilot and Gen AI SuccessMeasuring Microsoft 365 Copilot and Gen AI Success
Measuring Microsoft 365 Copilot and Gen AI Success
Nikki Chapple
 
Supercharge Your AI Development with Local LLMs
Supercharge Your AI Development with Local LLMsSupercharge Your AI Development with Local LLMs
Supercharge Your AI Development with Local LLMs
Francesco Corti
 
Jira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : IntroductionJira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : Introduction
Ravi Teja
 
Evaluation Challenges in Using Generative AI for Science & Technical Content
Evaluation Challenges in Using Generative AI for Science & Technical ContentEvaluation Challenges in Using Generative AI for Science & Technical Content
Evaluation Challenges in Using Generative AI for Science & Technical Content
Paul Groth
 
Dev Dives: System-to-system integration with UiPath API Workflows
Dev Dives: System-to-system integration with UiPath API WorkflowsDev Dives: System-to-system integration with UiPath API Workflows
Dev Dives: System-to-system integration with UiPath API Workflows
UiPathCommunity
 
New Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDBNew Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDB
ScyllaDB
 
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Nikki Chapple
 
Palo Alto Networks Cybersecurity Foundation
Palo Alto Networks Cybersecurity FoundationPalo Alto Networks Cybersecurity Foundation
Palo Alto Networks Cybersecurity Foundation
VICTOR MAESTRE RAMIREZ
 
Contributing to WordPress With & Without Code.pptx
Contributing to WordPress With & Without Code.pptxContributing to WordPress With & Without Code.pptx
Contributing to WordPress With & Without Code.pptx
Patrick Lumumba
 
End-to-end Assurance for SD-WAN & SASE with ThousandEyes
End-to-end Assurance for SD-WAN & SASE with ThousandEyesEnd-to-end Assurance for SD-WAN & SASE with ThousandEyes
End-to-end Assurance for SD-WAN & SASE with ThousandEyes
ThousandEyes
 
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
James Anderson
 
Microsoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentationMicrosoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentation
Digitalmara
 
Droidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing HealthcareDroidal: AI Agents Revolutionizing Healthcare
Droidal: AI Agents Revolutionizing Healthcare
Droidal LLC
 
Ad

Demystifying CSS & WordPress

Editor's Notes