简体   繁体   中英

some of css stylesheet is not loading

My CSS stylesheet loads almost all the contents but it is not loading my CSS for button . It's strange because all other things are working fine. I use opera . I have posted the CSS below which is not loading, also how I load the CSS.

<link rel="stylesheet" type="text/css" href="/style.css">
    .button {
        background-color: #22a4a3b5;
        border: none;
        color: white;
        padding: 4px 14px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 17px;
        margin: 0px 2px;
        cursor: pointer;
    }

JS fiddle https://jsfiddle.net/hpsj2e0L/

It works fine in the fiddle but not in my site.

make sure you put your css in style tag or in css file

<style>
.button, button {
    background-color: #22a4a3b5;
    border: none;
    color: white;
    padding: 4px 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    margin: 0px 2px;
    cursor: pointer;
}

</style>

also check if you have .button class in your html or maybe its button tag

The problem with your code is that you are writing CSS inside your HTML file without wrapping it into a <style> tag. Like this:

    <style>
        .button, button {
            background-color: #22a4a3b5;
            border: none;
            color: white;
            padding: 4px 14px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 17px;
            margin: 0px 2px;
            cursor: pointer;
    }
    </style>

also, you don't need both selectors if you are applying the style to a <button> you can just use button . .button is only necessary if you are going to apply it as a class like in <div class="button"></div>

Check other style files to button class. Try give the different class name or load your style file later than others.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM