Advanced CSS Troubleshooting

Post on 30-Oct-2014

6 views 0 download

Tags:

description

Good CSS troubleshooting skills are important to decrease your workload and help you work better with others. Tips for clean code and targetting, as well as solutions to modern browser bugs are covered.

Transcript of Advanced CSS Troubleshooting

or

How to become a Super CSS Detective

in 4 Easy Steps

Advanced CSS Troubleshooting

Denise R. Jacobs

CSS Summit 2010

2

Who, Me?

CSSDetectiveGuide.com

InterActWithWebStandards.com

3

CSS De-what?

• Preventive/defensive coding

– Focused & efficient

• Can quickly and easily solve problems when they come up

4

I can haz trubbleshootin?

Strong troubleshooting skills are one of your best allies in solving CSS “mysteries”…and they also make you feel like a badass.

5

The 4 Easy Steps

1) Lay the foundation

2) Target your styles

3) Squash browser bugs

4) Clear float issues

6

Lay the Foundation1)

http://www.flickr.com/photos/pgoyette/2280685630/

7

Why?

A solid CSS foundation creates an environment where preventing and detecting problems is easier.

8

How to lay it down

1) Annotate & Optimize• Markup

• CSS

2) (Re)Set the Mood• CSS reset review

• DIY

9

Annotate Your Markup

begin with

<!-- #id or .class name -->

end with <!-- /end #id or .class name -->or, alternatively

<!-- / #id or .class name -->

10

Annotate Your Markup

Example:<div id="content"><div class="promo">...</div><!-- /end .promo -->

</div><!-- /end #content -->

11

Why Annotate Your Markup?

Helps you keep track of the element beginning and end, and helps you identify the pieces faster.

12

Annotate Your CSS: Macro-Optimize

/* Comments are good, mmkay? */

Notation is your friend. For:

• Overriding styles

• Creating stylesheet sections

• Listing the color scheme

• Resources and contact info.

13

Annotate Your CSS: Macro-Optimize

/* made by youon some date */

/* section of the stylesheet */p {border-color: #cf0;border-color-bottom: #ccc; /*this property overrides the previous one */

}

14

Why Macro-Optimize?Solo: Helps you remember your intentions with extra properties when you come back to your code.

With Folks:Helps your colleagues understand your intentions when working with your code.

Ergo:Saves time!

15

Micro-Optimize Your CSS: Length

Less is more:

• Use shortest properties and values

• Avoid duplicate properties

• Use shorthand properties

• Condense values and units

• Avoid multiple lines and indenting

16

Micro-optimize Your CSS: Speed

Up the efficiency:

• ID selectors are speedier than element or universal

• Drop element qualifiers

• Ditch descendent selectors when and where you can

17

Why Micro-Optimize?

• Cuts down file size

• Speeds up page load time

• Encourages best practices

18

Micro-Optimization in Action

Example:#sidebar {background: #fff url(bg.png) repeat-x 0 0;

font: normal 1.33em/1.33 Georgia, serif;

border: 1px solid red;margin: 10px 20px;padding: .1em;}

19

Reasons to Reset

By deliberately establishing an element’s properties, you can:

• Better control the elements on the page

• More quickly determine the source of problems when they arise

20

CSS Reset All-Star: Eric Meyer’s

Pro’s–One of the most popular, well thought

out–Neutralizes almost every element

Con’s–Can be too far-reaching–Extra work to establish the values for

the elements you want

http://meyerweb.com/eric/tools/css/reset/

21

Make Your Own Reset

Why DIY?• You can determine exactly which

elements you want to reset• May save on reestablishing

properties• You know exactly what is changed

and why you changed it• Problems will be that much more

obvious

22

Top Properties to Reset

• Margin and padding

• Borders, especially on linked images

• Link text underlining

• Vertical alignment

• Font size and line-height

23

Target Your Styles2)

http://www.flickr.com/photos/blip/139087426/

24

Why?

Having a plan for targeting elements helps speed and efficiency – in both creating and fixing styles.

25

How to Hit the Mark

1) Technique

2) Specificity

3) Advanced Selectors

26

One Targeting Technique

My favorite:outline: 1px solid red;

Why?• outline does not add to

dimensions of the element

• Color names used only for troubleshooting

27

Specificity Rules!

Using specificity, you can create selectors that will zero right in on your desired element(s), but you’ve got to do it by the rules.

A little review:

1. Weight rules

2. Specificity tips and guidelines

28

Super Simplified Specificity

The more specific the selector is, the higher the specificity

#id: can only be one on the page = high specificity (100)

.class: can be multiple, but not everywhere = medium specificity (10)

element: lots on the page = low specificity (1)

* : everything on the page = no specificity (0)

29

Some Specificity Guidelines

• Don’t rely too heavily on specificity –leverage as many reusable selectors as possible

• Use the cascade and source order so that you don’t have to get too specific

• Trust specificity over source order in terms of which style will win and get applied

30

Targeting with Advanced Selectors

The right selector will help you achieve targeting nirvana, so it’s important to know which selectors you can use now.

Let’s peek at:• CSS2 Selectors • CSS3 Selectors • Their browser support

31

Advanced CSS2 Selectors

• Universal (ie7/8 – yes)• Child (ie7/8 – yes)• Sibling/Adjacent (ie7 no, ie8 – yes)• Attribute (ie7/8 – yes)• Pseudo elements (ie7/8 – no)

– ::before– ::after

• State pseudo-classes, v2.1– :first-child (ie7/8 – yes)– :hover (ie7/8 – yes)– :active (ie7/8 – yes)– :focus (ie7/8 – no)– :lang (ie7/8 – no)

32

CSS2 Selector Support

http://www.quirksmode.org/compatibility.html

33

Advanced CSS3 Selectors

• General sibling• Attribute substrings• State pseudo-classes, v3.0

–:enabled–:disabled–:checked –:selection

• Target pseudo-classes• Negation pseudo-class

34

Advanced CSS3 Selectors, contd.• Structural pseudo classes

– :root– :nth-child(n)– :nth-last-child(n)– :nth-of-type(n)– :nth-last-of-type(n)– :last-child– :first-of-type– :last-of-type– :only-child – :only-of-type– :empty

35

CSS3 Selector Support

http://www.findmebyip.com/litmus

36

Advanced Selectors: Some Usage Tips

• All of the CSS2 selectors are supported by the modern browsers, and almost all of the CSS3 ones are, so use them!

• It’s easy to target styles away from the IEs, but target them to the IEswith simpler combinator selectors

• There are “hacks” to target styles to specific browsers, other than the IEs

37

Squash Browser Bugs3)

http://www.flickr.com/photos/slappytheseal/3687999392/

38

Dealing with IE6 (Still? Yes, still.)

Whether it’s by force or by choice, you need to know how you are going to deal with IE6 until it’s completely gone.

Approaches:• Kick it to the curb• Display tolerant indifference• Show some love: be graceful in your degradation

39

IE6: Go home!

http://www.flickr.com/photos/robotjohnny/3629069606/

40

IE6, get stuffed.

http://tumblr.9gag.com/post/285107173

41

IE6? I just won’t support that.

42

IE6? Meh.

http://www.flickr.com/photos/untitled13/83391194/

43

Serve Up Some Stripped-Down Style

Universal IE6 stylesheet

(philosophy)

(example)

Universal IE6 stylesheet: http://code.google.com/p/universal-ie6-css/http://browsesad.com

44

Limit Your Support

http://gowalla.com

45

Show an old IE browser some love

http://www.flickr.com/photos/brunkfordbraun/391876102/

46

Graceful IE6 Degradation

• Serve IE6 targeted properties served by conditional comments– display: inline– zoom: 1

• Use the * html hack

47

Gettin’ Buggy With It

Despite your best efforts towards clean, efficient, optimized code, browsers will always have issues that throw a wrench in the works.

The Line-up:1) IE7 & IE82) Firefox3) The Webkits4) Opera

48

IE7 is color buggin’

color and background-color with rgba

The problem:

An rgba color is correctly set to override the rgb for the IEs , but the rgbcolor doesn’t show up at all.

49

IE7 is color buggin’

The solution:

• Use the shorthand property background instead of background-color OR

• Use a hexidecimal color instead of rgb, and then continue the override with rgba.

50

IE7 is color buggin’Example:div {

background: rgb(200, 54, 54); /* fallback color */

background: rgba(200, 54, 54, 0.5);}OR

div {background-color: #fd7e7e;background-color: rgba(255,0,0,0.5);

}

51

IE7 & IE8 are both buggin’

@font-face super bullet-proofing

The problem:

@font-face doesn’t work, even with the proper normal syntax. What gives?

52

@font-face bullet-proofing, #1

@font-face { font-family: 'Graublau Web'; src: url('GraublauWeb.eot'); src: local('☺'), url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype');

}

53

@font-face bullet-proofing, #2@font-face { font-family: 'Graublau Web'; src: url('GraublauWeb.eot');}

@font-face { font-family: 'Graublau Web'; src: local('☺'), url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype');

}

54

Get Your Webkit Bug On

@font-face bold and italics “bug”

The problem:

Applying font-weight:bold or font-style: italic to @font-face'd text doesn’t work.

55

Get Your Webkit Bug On

The solution:

Add the value normal to font weight, style, and variant in the @font-face declaration to set a baseline.

56

Get your @font-face + faux variations

Example:@font-face { font-family: 'Graublau Web'; src: url('GraublauWeb.eot'); src: local('☺'), url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype');

font-weight:normal;font-style:normal;font-variant:normal;}

57

Firefox? Buggin’.

The Outline Overflow Bug

The problem:

Firefox will draw an outline around the content of an element that has overflowed its boundaries rather than around the element’s actual set dimensions.

58

Firefox? Buggin’.

The Outline Overflow Bug

A solution:

Use border instead and adjust the dimensions of the element.

59

An Ode to Opera Bugs

Hiding elements bug

The problem:

When hiding elements offscreen for image replacement, etc. em units are not recognized.

60

An Ode to Opera Bugs

The solution:

Use px instead of em

Example:

h2 {margin-left: -4999px ;}

61

Clear Float Issues4)

http://www.flickr.com/photos/elisfanclub/1132147711/

62

Clear Float Issues

1) Problems with overflow: hidden

2) Problems with Clearfix

3) Solutions and Alternatives

63

Floats: overflow: hidden Issues

Although this is almost everyone’s favorite float-clearing technique, there can be problems with:

• Hiding content with no scrollbars when browser window is smaller than container

• Interference with margins, borders, outlines, and absolutely-positioned PNGs

• Application of CSS3 properties, such as box-shadow, text-shadow & transform

64

overflow: hidden Issues

Example:div.container {border: 1px solid #000000;overflow: hidden;}

65

overflow: hidden Alternative

Example:div.container {border: 1px solid #000000;overflow: auto;/* hidden & scroll also work*/

width: 100%; /* some width or height required */

}

66

Clearfix IssuesBe aware of support: • Neither IE6 nor IE7 support the :after pseudo-

class

Be mindful of the generated content:• Sometimes the generated period can be a

problem

Remember where to put it:• Apply .clearfix to the element containing the

floats, so that the cleared content is generated after it

67

The Top ClearfixExample:.clearfix:after {

visibility: hidden;display: block;font-size: 0;content: " ";clear: both;height: 0;}

.clearfix { display: inline-block; }

/* ie for mac hack removed for readability */

68

Clearing Floats Alternatives

FnE still a viable option:

• Contains and clears

Potential issue:

• Watch for how it affects the rest of the page layout and structure

69

Future Hope For Page Layouts

CSS3 and HTML5 FTW!

• CSS3: flexible box-model, columns and box-sizing

• HTML5: <head>,<section>, and<footer>

70

RecapTaking all of these steps:1. Lay the foundation2. Target your styles3. Squash browser bugs4. Clear float issues

Will yield:1. Code that is easier to read and find

problems in2. Speed of use and in use3. Finding solutions faster

71

And you’ll become…

…one baaad CSS detectin’ mutha!

72

Questions?...Answers?

http://www.flickr.com/photos/

73

Resources

http://delicious.com/denisejacobs/CSSsummit2010/

http://www.flickr.com/photos/aarronwalter/4629076165/

74

The CSS Detective Guide

CSSDetectiveGuide.comtwitter.com/cssdetective

Get 35% off at PeachPit.com with the discount code“DETECTIVE”

Shameless Self-Promotion #1

75

InterAct With Web Standards:A Holistic Approach to Web Design

InterActWithWebStandards.comtwitter.com/waspinteract

Get 35% off at PeachPit.comwith the discount code“INTERACT”

Shameless Self-Promotion #2

76

Thank You!

denisejacobs.com

denise@denisejacobs.com

twitter.com/denisejacobs

slideshare.net/denisejacobs

http://www.flickr.com/photos/aarronwalter/4629076165/

77

And that’s a wrap!