Woking with CSS styling tools
Having tools for editing CSS files is an advantage for frontend web developers as it allows them to edit these files quickly and easily. That is why VS contains several tools that can be of great help in creating and editing these files.
We’ll start by examining CSS3 snippets.
CSS3 snippets
Even today, there are cross-browser compatibility issues for displaying styles. Surely, it must have happened to you that when implementing a CSS property; it looks different on each browser.
It is for this reason that VS has implemented a CSS3 snippet completion system that allows cross-browser compatibility without the need to write code for each browser.
To see this practically, we can open the Chapter7_Code
| wwwroot
| css
| app.css
file and locate the .content
style. Within this style, we can start typing border-radius
. This will display a list of IntelliSense recommendations, as shown in Figure 7.2:
Figure 7.2 ...