How Can Find The Image Path For Css
I am new for for css and Bootstrap so sorry if silly question. I want to use the Bootstrap in my project. I found a tutorial and going to follow. In the tutorial There is a folder
Solution 1:
Please check here:
https://stackoverflow.com/a/20047417/6284581
you do not have to move your .html
file
Your example css
and img
path not state correctly.
../
means one file directory up(check link above)! In your example if you start from
web...
then you need to go main project directory. Try this
<link href="../web/static/styles/style.css" >
<a class="navbar-brand" href="#"><img src="../web/static/style/img/logo.png"></a>
I hope it will help to you
Post a Comment for "How Can Find The Image Path For Css"