Analysis and solution of the reasons why HTML external reference CSS files are not effective

Analysis and solution of the reasons why HTML external reference CSS files are not effective
As a front-end novice, I tinkered with the front-end for a few days. . Today I suddenly discovered that something I firmly believed in actually had problems. . For example, I wrote a CSS style document under the CSS directory: style.css. There was only one sentence in it:
XML/HTML CodeCopy content to clipboard
  1. body {
  2. background-color: #ddd;
  3. }
Then I import this external css into my HTML file:
XML/HTML CodeCopy content to clipboard
  1. < link   rel = "stylesheet"   type = "text/css"   href = "css/style.css" >    

Refresh in the browser. . Wow, kao. There was no response. It didn't work. . I checked the path several times to make sure there was no problem, and opened Chrome's F12 debugger. After making sure the browser loaded the CSS file, I opened it and saw:


It's garbled. . There should be something wrong with the encoding format, but I don't know what to do. . After consulting a front-end partner, I checked the current encoding of the web page:


The displayed encoding is UTF-16LE. .
Later I tried it and used the sublime editor to modify the local css file encoding format to this utf-16LE:


Rewrote the css code. Save the run. . It works as expected. .
But my HTML is specified as UTF-8, while the CSS is UTF-16, which makes me very unhappy. . So I asked for a solution again. It can be solved, and it's simple. .
Change the css back to utf-8 and edit the code inside. Just declare the encoding format when importing this CSS in HTML:


That is, just add an attribute to the link tag: charset="utf-8". . . It’s that simple. . .

This is all I have to say about the reasons why HTML external referenced CSS files do not take effect and the solutions. I hope it will be helpful to you!

<<:  Detailed explanation of MYSQL stored procedure comments

>>:  CSS3 to achieve menu hover effect

Recommend

Detailed explanation of setting resource cache in nginx

I have always wanted to learn about caching. Afte...

Solve the problem of installing Theano on Ubuntu 19

Solution: Directly in the directory where you dow...

Solve the problem of case sensitivity of Linux+Apache server URL

I encountered a problem today. When entering the ...

How to set a fixed IP address for a VMware virtual machine (graphic tutorial)

1. Select Edit → Virtual Network Editor in the me...

Use of Linux passwd command

1. Command Introduction The passwd command is use...

About the problem of running git programs in jenkins deployed by docker

1. First, an error message is reported when assoc...

Vue3 + TypeScript Development Summary

Table of contents Vue3 + TypeScript Learning 1. E...

MySQL5.7 parallel replication principle and implementation

Anyone who has a little knowledge of data operati...

Implementation of scheduled backup in Mysql5.7

1. Find mysqldump.exe in the MySQL installation p...

XHTML: Frame structure tag

Frame structure tag <frameset></frameset...

Vue implements the browser-side code scanning function

background Not long ago, I made a function about ...

Example of using swiper plugin to implement carousel in Vue

Table of contents vue - Use swiper plugin to impl...

Sample code for implementing form validation with pure CSS

In our daily business, form validation is a very ...