找不到合适的css标签

时间:2017-05-25 10:37:15

标签: css

我在尝试追踪网站上的蓝色边框时遇到了真正的麻烦,你会在视频上看到它们的最小值http://innovativeapps.dk/但是当我看到css时我找不到它。

.video-container .description .inner {   
   /*background: rgba(255, 255, 255, 0.79) none repeat scroll 0 0;*/   
   border-radius: 4px;   
   color: #ffffff;   
   font-size: 28px;
   font-weight: bold;
   line-height: 42px;
   margin: 0 auto;
   padding: 8px 25px;
   width: 68%;
}

有人知道它在视频中几乎就是它的位置。

3 个答案:

答案 0 :(得分:0)

navbar-default第47行文件中的custom.css中有一个阴影

.navbar-default {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: 0 0 7px #1E70B9; /*This is a blue shadow*/
    position: fixed;
    top: 0px;
}

答案 1 :(得分:0)

查看代码,box-shadow: 0 0 7px #1E70B9;第47行文件中的.navbar-default下有一个蓝框阴影custom.css

enter image description here

答案 2 :(得分:0)

箱形阴影主要用于为任何容器制作类似阴影的边框。 就像文字的文字阴影一样。

 navbar-default {
   background: #ffffff none repeat scroll 0 0;
   **box-shadow: 0 0 7px #1E70B9; //this line make the blue shadow.**
   position: fixed;
   top: 0px;
 }