4# CSS Interview Topics

CSS Preprocessor

CSS Sprites

CSS Preprocessor

CSS Preprocessors are tools that extend the functionality of vanilla CSS by adding a wide variety of logical syntax such as you might see in a normal programming language. A browser can only…


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Vasco Neves

  • CSS Preprocessor
  • CSS Sprites

CSS Preprocessor

CSS Preprocessors are tools that extend the functionality of vanilla CSS by adding a wide variety of logical syntax such as you might see in a normal programming language. A browser can only understand CSS, which at times may not be enough to write clean and reusable rules.

A few of most popular CSS preprocessors:

  • Sass
  • LESS
  • Stylus
  • PostCSS
.circle {
  border: 1px solid #ccc;
  border-radius: 50px;
  overflow: hidden;
}
.avatar {
  @extend .circle;
}
.circle {
  border: 1px solid #ccc;
  border-radius: 50px;
  overflow: hidden;
}

.avatar:extend(.circle) {}

CSS Sprites

CSS Sprites are a means of combining multiple images into a single image file for use on a website. Using the image sprites instead of separate images will significantly reduce the number of HTTP requests a browser makes to the server, which can be very effective for improving the loading time of web pages and overall site performance.

Resource:. Svg sprit


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Vasco Neves


Print Share Comment Cite Upload Translate Updates
APA

Vasco Neves | Sciencx (2022-09-11T12:51:25+00:00) 4# CSS Interview Topics. Retrieved from https://www.scien.cx/2022/09/11/4-css-interview-topics/

MLA
" » 4# CSS Interview Topics." Vasco Neves | Sciencx - Sunday September 11, 2022, https://www.scien.cx/2022/09/11/4-css-interview-topics/
HARVARD
Vasco Neves | Sciencx Sunday September 11, 2022 » 4# CSS Interview Topics., viewed ,<https://www.scien.cx/2022/09/11/4-css-interview-topics/>
VANCOUVER
Vasco Neves | Sciencx - » 4# CSS Interview Topics. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/09/11/4-css-interview-topics/
CHICAGO
" » 4# CSS Interview Topics." Vasco Neves | Sciencx - Accessed . https://www.scien.cx/2022/09/11/4-css-interview-topics/
IEEE
" » 4# CSS Interview Topics." Vasco Neves | Sciencx [Online]. Available: https://www.scien.cx/2022/09/11/4-css-interview-topics/. [Accessed: ]
rf:citation
» 4# CSS Interview Topics | Vasco Neves | Sciencx | https://www.scien.cx/2022/09/11/4-css-interview-topics/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.