php - Text-decoration: none; not working -


this question has answer here:

i posting here first time. doing 1 project online web development course, have created footer using footer tag , i'm using bootstrap css file , css file. have used anchor tag add links can't remove text decoration reason, tried internal,external , inline style sheets nothing working. footer code below, footer page has been included in index.php file using include() function.

<!doctype html> <html> <head> <title></title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- latest compiled , minified bootstrap css --> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type=" text/css"> <!-- css --> <link rel="stylesheet" href="bootstrap/css/style.css" type=" text/css"> <!-- jquery library --> <script src="bootstrap/js/jquery.min.js"></script> <!-- latest compiled , minified javascript --> <script src="bootstrap/js/bootstrap.min.js"></script>    </head> <body>     <footer>     <div class="container">         <div class="row">             <div class="col-xs-6 col-sm-4">                 <h4>information</h4>               </div>             <div class="col-xs-6 col-sm-4">                 <h4>my account</h4>                                 </div>             <div class="col-xs-6 col-sm-4">                 <h4>contact us</h4>                           </div>         </div>         <div class="row">             <div class="col-xs-6 col-sm-4">                 <p><a href="">about us</a><br>                    <a href="">contact us</a>                 </p>               </div>             <div class="col-xs-6 col-sm-4 content">                 <p><a href="">login</a><br>                    <a href="">signup</a>                 </p>                                 </div>             <div class="col-xs-6 col-sm-4">                 <p>contact: +91-9742485069</p>                           </div>         </div>         </div>                                       </footer> </body>     </html> 

what should include in css file remove text decoration links? forgive me if question doesn't make sense anyone, posting here first time.

this question marked duplicate have tried solutions mentioned in question, see question , solutions didn't work me.

not sure, want ? see fiddle

.footer { color: #fff; } .footer a:hover { text-decoration: none; } 

Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -