Skip to content

Latest commit

 

History

History
49 lines (42 loc) · 2.11 KB

CSS.md

File metadata and controls

49 lines (42 loc) · 2.11 KB

Olay - CSS For Starters

Here's a list of the most commonly used properties for your Browser-Source's CSS field. Follow the links for documentation and interactive examples!


Example

Here's a fictional example that uses all the properties from the list above.

.mod {
    background: #333333;
    border-radius: 5px;
    border: 2px solid #077990;
    color: #000099;
    display: inline-block;
    font-family: 'Times New Roman', serif;
    font-size: 24px;
    font-weight: bold;
    margin: 40px;
    opacity: 0.8;
    padding: 20px;
    text-align: center;
    text-shadow: #ff0000 20px 20px 5px;
}

.mod::before { 
    content: 'hello cruel world! ';
}