- Difference between Inline, Internal and External CSS
- HTML
- HTML
- HTML
- CSS
- Types of CSS
- 3 Types of CSS Styles
- 1. Internal CSS
- How to Use Internal CSS
- Pros
- Cons
- 2. External CSS
- How to Use External CSS
- Pros
- Cons
- 3. Inline CSS
- How to Use Inline CSS
- Pros
- Cons
- What if I Use All the 3 CSS Styles in a Single Web Page?
- Conclusion
Difference between Inline, Internal and External CSS
CSS is used to add styles on web pages that contain HTML elements. There are three methods to add styles on web pages, these are – Inline, Internal, and External. In this article, we will see the differences between Inline, Internal, and External CSS styles.
Inline CSS: Inline CSS is a way of defining the styling of an HTML element by adding CSS rules directly to the element’s tag using the “style” attribute. It is used for quick and simple styling changes to specific elements, without creating a separate CSS file.
Example: In this example, we will change the color and font size of a paragraph element with the help of the “style” attribute.
HTML
Output: Here, the “style” attribute has been added to the
tag and includes two CSS rules: “color” and “font-size”. The “color” rule is set to “red” and the “font-size” rule is set to “14px”. These rules will only apply to the specific paragraph element in which the “style” attribute has been added.
Internal CSS: Internal CSS, also known as embedded CSS is a method of adding CSS rules directly to the head section of an HTML document. It involves using the element to enclose the CSS code within the HTML document itself. Internal CSS is placed within the section of the HTML document, typically after the document’s title and before any other content.
HTML
Output: In this example, the element is used to enclose the CSS rules that apply to the h1 and p elements. Any styling applied with internal CSS is specific to that HTML document and cannot be used on other pages or websites.
External CSS: External CSS is used to place CSS code in a separate file and link to the HTML document. To use external CSS, create a separate file with the .css file extension that contains your CSS rules. You can link this file to your HTML document using the “link” tag in the head section of your HTML document.
In this case, the “link” tag specifies the type of the file (CSS), the relationship between the HTML document and the CSS file (“stylesheet”), and the location of the CSS file (“href” attribute). The href attribute points to the URL or file path of your external CSS file.
Example: HTML code:
HTML
Create a CSS file named styles.css and write all the codes in that CSS file
File name: style.css
CSS
Differences between Inline, Internal, and External CSS:
Feature | Inline CSS | Internal CSS | External CSS |
---|---|---|---|
Location | It is used within HTML tag using the style attribute. | It is used within section of HTML document. | It is used in a separate .css file. |
Selector Scope | Affects a single element or a group of elements. | Affects multiple elements within the same HTML element. | Affects multiple HTML documents or an entire website. |
Reusability | Not reusable. Styles need to be repeated for each element. | Can be reused on multiple elements within the same HTML document. | Can be reused on multiple HTML documents or an entire website. |
Priority | Highest priority. Overrides internal and external styles. | Medium priority. Overrides external styles but can be overridden by inline styles. | Lowest priority. Can be overridden by both inline and internal styles. |
File Size | Inline styles increase the HTML file size, which can affect the page load time. | Internal styles are part of the HTML file, which increases the file size. | External styles are in a separate file, which reduces the HTML file size and can be cached for faster page loads. |
Maintainability | Not easy to maintain. Changes need to be made manually to each element. | Relatively easy to maintain. Changes need to be made in one place in the section. | Easiest to maintain. Changes need to be made in one place in the external .css file. |
Inline CSS is used for quick and specific styling, internal CSS is used for multiple elements within the same HTML document, and external CSS is used for a more organized and scalable approach to styling, allowing for reusability and maintainability.
Types of CSS
Cascading Style Sheets or CSS is a markup language that decides the manner in which web pages or websites appear to the visitors. It helps in manipulating the colours, fonts, and layouts of various website elements.
CSS also allows adding animations or effects to a website, such as animated backgrounds and click button effects. Without CSS, a website will be rendered as a plain HTML webpage, which is, obviously, not attractive.
3 Types of CSS Styles
There are some distinct ways of implementing the CSS code. These are known as CSS styles. Three types of CSS styles are available; inline CSS, external CSS, and internal CSS.
Although each of the CSS styles serves the same goal i.e. styling HTML code, how it is done is different for each. We will explore each of the CSS styles in the following section:
1. Internal CSS
Also known as embedded CSS, internal CSS refers to the practice of adding the CSS code to the HTML document pertaining to the web page where we wish to add the CSS styling.
For adding internal CSS, one needs to add the tag inside the section of the HTML file. Internal CSS is extremely useful for styling a single web page.
How to Use Internal CSS
- Step #01 — Open the HTML file and go to the tag.
- Step #02 — Add
.
- Step #05 - Save the HTML file for the changes to take effect.
Pros
- No need to upload multiple files as the CSS code is added to the same HTML file corresponding to the web page.
- Class and ID selectors can be used.
Cons
- Adding CSS code to the HTML file results in increasing the page size and therefore, reducing the loading speed.
- Using it for multiple web pages is ineffective as it is required to add the same CSS rules for every web page.
Check out this comprehensive CSS cheat sheet!
2. External CSS
To qualify for the external CSS style, a web page is required to be linked to an external file containing the CSS code. External CSS is a super-effective CSS styling method when developing a big website.
One can create the external .css file using some text editor, such as Notepad and Rapid CSS Editor. Here, the CSS code resides in a document other than the one containing the HTML code for the concerned web page, hence the name.
All minor and major changes for a website leveraging external CSS can be made merely by editing the single external .css file.
How to Use External CSS
- Step #01 - Open a text editor and create a new file. Add the CSS code here that you wish to apply to the HTML web page(s).
- Step #02 - Save the file as .css file and exit.
- Step #03 - Open the HTML document where you wish to apply the CSS code.
- Step #04 - Navigate to the section in the HTML file and insert a reference to the external CSS file just after the tag.
- Step #05 - Save the HTML file.
Pros
- A single external CSS file can be used for styling several web pages.
- HTML files leveraging external CSS have a cleaner structure and are smaller in size.
Cons
- Linking to or uploading several external CSS files might decrease a website’s download speed and affect its performance.
- Web pages requiring the external CSS file might not be rendered accurately until the same is fully loaded.
3. Inline CSS
Unlike internal and external CSS styles, the inline CSS style is used for styling a particular HTML element and not the entire HTML code. For implementing inline CSS, one needs to add the style attribute to every HTML tag that requires styling. Selectors aren’t used here.
Maintaining a website only by using inline CSS is impractical. This is so because following the inline CSS styling every HTML tag must be styled separately. Hence, using it isn’t recommended.
Inline CSS, however, is quite useful in some particular scenarios. For instance, situations in which:
- The CSS style must be applied only to one element, or
- When access to CSS files isn’t available.
This type of CSS styling is used mainly for previewing/testing changes as well as applying quick fixes to a web page/website.
How to Use Inline CSS
- Step #01 - Open the HTML file where you need to add the inline CSS.
- Step #02 - Now, navigate to the element(s) where you want to insert the inline CSS.
- Step #03 - Add style="code" to the tag(s) you wish to use the inline CSS at. Here, code is the CSS code that you need to add. For example, if we wish to add inline CSS to tag, it will look something like this:
Pros
- Allows instantly inserting CSS code to any HTML file.
- There is no need for creating and uploading a separate file for adding the CSS code.
Cons
- Adding CSS code to each and every HTML element wastes time.
- Styling several elements affects page size and download speed.
- Too much inline CSS can result in a messy HTML structure.
What if I Use All the 3 CSS Styles in a Single Web Page?
It is possible to use each of the 3 CSS styles in one web page. What will result, however, is that the inline CSS style will override the other two CSS styles i.e. inline CSS code will take effect and not the other two. The priority for the 3 types of CSS styles follows this particular order:
inline CSS > internal CSS > external CSS
As you can use, when internal and external CSS styles are used for a web page, the internal CSS style will override the external CSS style.
Conclusion
By this point, you’ll be well acquainted with the 3 types of CSS, namely external, internal, and inline. Each one has its own advantages and disadvantages over the others.
So, be sure to do the research and choose that one CSS style approach that perfectly fits your website/web page requirements. Best of luck!
Want to step-up your CSS game? Check out these best CSS tutorials.
People are also reading:
- Types of CSS
- Best CSS Editor
- CSS Interview Questions
- CSS Frameworks
- Difference between CSS, CSS2, and CSS3
- Difference between HTML, HTML5 and XML
- Top Angular Alternatives
- Best Angular IDE
- Top Angular Interview Questions and Answers
- Download Bootstrap Cheat Sheet
- Top Bootstrap Interview Questions and Answers
- Top Javascript IDE
- Bootstrap Cheat Sheet