We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to include css file in base.html
I created style.css file in public/assets/css/style.css
i want to link this file into base.html
If i include /assets/css/style.css this way
then in /home route it worked But if i use /product/create then it doesn’t work
The text was updated successfully, but these errors were encountered:
You need to start the path with a slash so it's route relative:
<link rel="stylesheet" href="/assets/css/style.css">
Sorry, something went wrong.
You need to start the path with a slash so it's route relative: <link rel="stylesheet" href="/assets/css/style.css">
Not working brother
Are you running the code in a subfolder? Then you need to include that too
No branches or pull requests
How to include css file in base.html
I created style.css file in public/assets/css/style.css
i want to link this file into base.html
If i include /assets/css/style.css this way
then in /home route it worked
But if i use /product/create then it doesn’t work
The text was updated successfully, but these errors were encountered: