html - Css background colour not working -
hello creating website , can't here code:
body { font-family: "segoe ui", tahoma, sans-serif; font-size: 18px; background-color: ffffff; overflow: auto; }
<body> <div class="main"> <img src=images\cat.gif></img> <table class="table"> <tr> <th style="text-align:left;"> <p id="output"><b>likes: 0</b> </p> </th> <th style="text-align:right;"> <button class="button" onclick="likebutton()">like</button> </th> </tr> </table> <script src="script.js"></script> </div> </body>
i have idea wrong of guides i've seen have fixed syntax errors i've triple checked , sure don't have plus on other documents have same issue. may bad. thanks...
body { font-family: "segoe ui",tahoma,sans-serif; font-size: 18px; background-color: #ffffff; overflow: auto; }
try this
Comments
Post a Comment