What is a user agent stylesheet?

后端 未结 14 572
无人及你
无人及你 2020-11-22 16:58

I\'m working on a web page in Google Chrome. It displays correctly with the following styles.

table {
    display: table;
    border-collapse: separate;
             


        
相关标签:
14条回答
  • 2020-11-22 17:36

    I have a solution. Check this:

    Error

    <link href="assets/css/bootstrap.min.css" rel="text/css" type="stylesheet">
    

    Correct

    <link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css">
    
    0 讨论(0)
  • 2020-11-22 17:38

    Define the values that you don't want to be used from Chrome's user agent style in your own CSS content.

    0 讨论(0)
提交回复
热议问题