为什么 bootstrap.min.css 看起来像评论

How come bootstrap.min.css looks like commented

当我得到 Bootstrap v3.2.0 的缩小版时。对我来说,它似乎被评论了,但它正在工作,这些评论是什么样的,浏览器如何理解它:

/*!
* Bootstrap v3.3.6 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css      */html{font-fami

看这里https://github.com/twbs/bootstrap/blob/master/dist/css/bootstrap.min.css

斜线星号 /* 打开 multi-line 评论,*/ 关闭 multi-line 评论。您可以在 CSS 开始之前看到评论被 */.

关闭

此外,/*! 通过缩小过程保留注释。