问题
I have main CSS stylesheet for CI views, when but when load another link and switch to another page, Codeigniter have problem to locate css style-sheet?
CSS is classically linked in header, did not used frameworks helpers like base_url();
回答1:
loading CSS will be
href= "<?php echo base_url()?>assets/css/stylesheet.css"
And file structure would be like this
application
assets
css
stylesheet.css
system
index.php
Note Make sure Base Url is set correctly.
来源:https://stackoverflow.com/questions/38942840/cant-load-css-stylesheet-in-codeigniter