Home > Development Tools > phpstorm > How to reference css in phpstorm

How to reference css in phpstorm

爱喝马黛茶的安东尼
Release: 2019-08-19 14:30:07
Original
6393 people have browsed it

How to reference css in phpstorm

4 ways to introduce CSS files

(1) Link type: in the of the web page Use the tag in the

tag to introduce external style sheet files, and use html rules to introduce external css (used more often):

<link href="./mystyle.css" rel="stylesheet" type="text/css"/>
Copy after login

Related recommendations: "PhpStorm use Tutorial

(2) Import type: Introduce an independent .css file into the HTML file. The import type uses CSS rules to introduce external CSS files. The