CSS Master
Variable Interpolation LessandSasshaveafeaturecalledvariableinterpolation.Variableinterpolation letsyouusevariablevaluesinwaysot ...
$base-font-size: 16px; $base-line-height: 1.5; body { font: 100 $base-font-size / $base-line-height sans-serif; } Youmightexpect ...
Mixins Anotheradvantageofusingpreprocessorsistheabilitytocreatereusablesnippets ofcodeintheformofmixins.Mixinsaregreatformanagin ...
display: inline-block; font-size: 16 px; } It’salsopossibletocreateamixinrulesetwithoutitbeingincludedintheoutput. Todoso,addpar ...
-moz-transition: height 500ms linear; transition: height 500ms linear; } Theadvantageofusingamixinhereistwofold:itsavesussometyp ...
-moz-transition: height 500ms linear; transition: height 500ms linear; } Sassmixinsdon’thavetoacceptparameters,however.Let’suseo ...
.message { border: 1px solid #000; font: 11px / 1.5 sans-serif; } .error { &:extend(.message); background: #ffd1d1; border-c ...
Extending in Sass Conceptually,extendinginSassisthesameasextendinginLess.ExtendinginSass alsocombinesselectorsintoasingleruleset ...
.warning { background: #ffc; border-color: #fc0; } Here,too,ourextendedandextendeeselectorsaregroupedtogetherinasinglerule set.S ...
Conclusion LessandSassarepowerfultoolsforwritingandorganizingCSS;however,be mindfulthatit’seasytoaddbloattoyourCSSbyoverusingnes ...
...
Chapter 10 Conclusion 1 0. Conclusion Inthisbook,we’vecoveredsomeofthefinerpointsandbroadstrokesofCSS.In someways,we’veonlyscrat ...
Grid Layout Withgridlayout,we’llbeabletocreatedocumentlayoutssuchastheoneinFig- ure10.1withoutrowsofdivelements. Figure 10.1. Gr ...
</div> <div class="grid-row"> <div class="grid-row-span-2"> <div class="gamma">gamma</div> <div ...
} .epsilon { grid-column: 5 / 6; grid-row: 3 / 10; } Eachgrid-columnvalueisashorthandforthegrid-column-startandgrid- column-endp ...
CSS Shapes Gridlayoutisn'ttheonlylayout-relatedspecificationthat'scomingsoontobrowsers. CSSShapes^4 willenabledeveloperstoflowco ...
Figure 10.2. Using shape-outside without a clip-path However,thebackgroundcolorof.shapedoesn'tfollowtheedgesofthepolygon created ...
Perhapssurprisingly,theclip-pathpropertyisnotdefinedbytheCSSShapes specification.Instead,it'soutlinedinCSSMaskingModuleLevel 15 ...
<div class="slideshow"> <img src="images/beach.jpg" alt="beach"> <img src="images/bird.jpg" alt="bird"> <im ...
height: 100%; display: inline-block; } InternetExplorer 11 supportsanolderversionofthespecification,whichusesthe snapIntervalfun ...
«
11
12
13
14
15
16
17
18
19
20
»
Free download pdf