0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

LaravelでCSSが接続できない

Posted at

基本的にhtmlからcssへリンクさせるときの記述は

html
<link rel="stylesheet" href="繋ぎたいCSS">

ではあるが

Laravelでは

 <link rel="stylesheet" href="{{ asset('css/cssファイル') }}">

を用いる。

{{PHPの処理}}を書き込むとPHPの記述が適用されるけれど
その理由が下記のURLに記載されている。
https://biz.addisteria.com/laravel_escape/#toc2

これによって、publi配下のcssファイルが適用されるのである。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?