Add CSS Class to Style an Element details (#28749)

pull/32432/head^2
DarkPanda 2019-03-08 15:23:33 -06:00 committed by Randell Dawson
parent 2d2c13f2ab
commit 45b24b1de1
1 changed files with 39 additions and 4 deletions

View File

@ -3,8 +3,43 @@ title: Use a CSS Class to Style an Element
---
## Use a CSS Class to Style an Element
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/responsive-web-design/basic-css/use-a-css-class-to-style-an-element/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
<a href='https://github.com/freecodecamp/guides/blob/master/README.md' target='_blank' rel='nofollow'>This quick style guide will help ensure your pull request gets accepted</a>.
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
In CSS, we can target the styling of specific elements that match the specified class attribute.
For example, if you have an element with a class of ```button```, then we can style the look & feel as follows:
* Start with a ```.``` (period) character followed by the class name and add your style
```css
.button {
border: 2px solid black;
text-align: center;
display: inline-block;
padding: 5px 10px;
}
```
Now, the real benefit of using class to style an element is to target multiple elements that have the matching class attribute. For example, if there are 2 buttons on a webpage and they both look similar in style but only differ in size, then we can use a common class to give them common styles and a unique class for each button to give them different size values.
The following HTML code snippet depicts 2 buttons:
* ```Sign up``` button that should have common button style + should be large in size
* ```Login``` button that should have common button style + should be small in size
```html
<div class="button large">Sign up</div>
<div class="button small">Login</div>
```
Using the above defined ```.button``` class as a common style for both buttons, and using ```.large``` and ```.small``` class attributes to give them different sizes, we can achieve the look we want without duplicating our code.
```css
.large {
font-size: 20px
}
```
```css
.small {
font-size: 10px
}
```