View on GitHub

reading-notes

Reading notes for Codesfellows Coding

Reading 03

HTML BOOK

Chapter 3: “Lists” (pp.62-73)

Chapter 13: “Boxes” (pp.300-329)

```css td.description { min-width: 450px; max-width: 650px; text-align: left; padding: 5px; margin: 0px;}

- min max height
```css h2, p {
width: 400px;
font-size: 90%;
line-height: 1.2em;}
h2 {
color: #0088dd;
border-bottom: 1px solid #0088dd;}
p {
min-height: 10px;
max-height: 30px;}

inline This causes a block-level element to act like an inline element. block This causes an inline element to act like a block-level element. inline-block This causes a block-level element to flow like an inline element, while retaining other features of a block-level element. none This hides an element from the page. In this case, the element acts as though it is not on the page at all (although a user could still see the content of the box if they used the view source option in their browser).

JS BOOK

Review from Reading 02 - Chapter 2: “Basic JavaScript Instructions” (pp.70-73)