Exam Objectives
Apply styles to alter appearance attributes (size, border and rounding border corners, outline, padding, margin); apply styles to alter graphic effects (transparency, opacity, background image, gradients, shadow, clipping); apply styles to establish and change an element’s position (static, relative, absolute, fixed)
Quick Overview of Training Materials
Programming in HTML5 with JavaScript and CSS3 - Training Guide - Chapter 4
CSS Box Properties
The actual display size and spacing of box elements in CSS is determined by several properties:
- margin - outermost portion of box. This is transparent, creating a space around the element
- border - the "outline" of the element.
- padding - acts as an internal margin, creating space between the elements contents and its border
- width/height - typically the dimensions of the content area of an element
The default box-sizing model is the "content-box" model, where the width and height attributes define the content area, and the padding and border width are applied on top of this. For a box with width & height of 100px, 10px padding, and a 2px border, the final outside dimensions of the box are 124px square. The graphic below illustrates this sizing model:
Standard sizing model, "content-box" |
Border Styles without radius |
Border Styles with border-radius: 15px in Chrome |
Graphic styling
The appearance of box elements can be controlled using the following properties:
- background-color - specifies a solid color for the background
- background-image - specifies an image file or a gradient
- url("image.png")
- linear-gradient()
- radial-gradient()
- opacity - value from 0 to 1 (0% to 100%). 0 is totally transparent (invisible), 1 is solid
- box-shadow - specifies a shadow around the element.
- overflow - determines how content in the element is clipped if it flows out of the bounds of the element.
The following graphic shows off a few of these properties. The two gradients are defines as follows:
- background-image: linear-gradient(to top, royalblue 0%, blue 50%, cyan 80%);
- background-image: radial-gradient(red, green, yellow);
The box shadow around them is purple with a blur of 10px and no offset:
- box-shadow: 0 0 10px purple;
I discussed positioning in a previous post, so I won't repeat the discussion. Most of the properties can be explored in the JSFiddle I created for that post:
No comments:
Post a Comment