• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/10

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

10 Cards in this Set

  • Front
  • Back
What are the main benefits of a CSS framework?
Grid system for easy layout
Keeps page consistent across browsers
What does the class "last" do in blueprint?
It removes the 10px passing on the right side for columns which you want to be the last (the rightmost) within the section.
How would you do a simple 2 column layout in blueprint?
<div class="container showgrid">
<h1 class="span-24">Main header spans all 24</h1>
<div class="span-12"><h2>Left side</h2></div>
<div class="span-12 last"><h2>Right size</h2></div>
</div>
What would be a benefit of using compass with blueprint?
Blueprint requires mixing html with the style, since you specify the column width of each div directly in html, but the whole point of css is to keep appearance separate from html. So compass allows you to set which div id's have what column layout!
What are the benefits to using SASS over plain CSS3?
1) You can use variables to store common values such as colours!
2) You can nest styles to avoid repetition
3) Mixins let you reuse whole css styles like variables!
4) Styles can be inherited
What is a selector?
A pattern used to describe the style of elements, for example (.classname, #idname, div, etc)
The CSS syntax is made up of three parts:
a selector, a property and a value:

selector {property: value}
In this: <link rel="stylesheet" type = "text/css" href = "main.css"/> What does the rel, type and href mean?
rel=relationship (stylesheet)
type= type of file (css)
href = location of file
How do you write a comment in a css file?
/*
Comment goes here
*/
How would you give the body a background which is an image?
body {
background-image: url('some_image.png');
}