Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/google-maps/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Twitter bootstrap 引导转盘-标题中的链接_Twitter Bootstrap_Carousel - Fatal编程技术网

Twitter bootstrap 引导转盘-标题中的链接

Twitter bootstrap 引导转盘-标题中的链接,twitter-bootstrap,carousel,Twitter Bootstrap,Carousel,我正在尝试创建一个参观我们医院的过程,但似乎无法使引导转盘中的“行动召唤”按钮正常工作。任何想法都将不胜感激。下面是其中一个项目的标记 看看我们现在有什么(标题中的链接不可点击) 勒博尼奥儿童医院在2010年开设了一个全新的设施。Le Bonheur旨在实现节能和社会责任。Le Bonheur是美国第五家经LEED认证的儿童医院。 由于某些原因,引导CSS不允许在标题中添加额外的。这样做会隐藏任何内部链接 您必须考虑一种解决方法,使样式恢复到您想要的样式,但是如果您删除这些额外的标记,则链接

我正在尝试创建一个参观我们医院的过程,但似乎无法使引导转盘中的“行动召唤”按钮正常工作。任何想法都将不胜感激。下面是其中一个项目的标记

看看我们现在有什么(标题中的链接不可点击)


勒博尼奥儿童医院在2010年开设了一个全新的设施。Le Bonheur旨在实现节能和社会责任。Le Bonheur是美国第五家经LEED认证的儿童医院。


由于某些原因,引导CSS不允许在标题中添加额外的
。这样做会隐藏任何内部链接

您必须考虑一种解决方法,使样式恢复到您想要的样式,但是如果您删除这些额外的
标记,则链接将变得可单击。e、 g:

<div class="item">
  <img src="/images/photos/experience-le-bonheur/hospital-first/First1.jpg">
  <span class="carousel-caption row-fluid">
   **REMOVE THIS-> <div class="span9 caption">
     <p>Le Bonheur Children’s Hospital opened an entire new facility in 2010. Le Bonheur is designed to be energy efficient and socially responsible. Le Bonheur is the fifth LEED-certified children’s hospital in the U.S.</p> 
    **REMOVE THIS-> </div>

    ** REMOVE THIS-> <div class="span3 action">
        <a class="btn btn-large pull-right" href="http://lebonheur.org/our-services/emergency-medicine/">Emergency Medicine</a>      
    **REMOVE THIS-> </div>
  </span>

**删除此->
勒博尼奥儿童医院在2010年开设了一个全新的设施。Le Bonheur旨在实现节能和社会责任。Le Bonheur是美国第五家经LEED认证的儿童医院。

**删除此-> **删除此-> **删除此->
因此,您的新标记如下所示:

<div class="item">
   <img src="/images/photos/experience-le-bonheur/hospital-first/First1.jpg"/>
   <span class="carousel-caption row-fluid">
      <p>Le Bonheur Children’s Hospital opened an entire new facility in 2010. Le Bonheur is designed to be energy efficient and socially responsible. Le Bonheur is the fifth LEED-certified children’s hospital in the U.S.</p> 
      <a class="btn btn-large pull-right" href="http://lebonheur.org/our-services/emergency-medicine/">Emergency Medicine</a>
   </span>
</div>

勒博尼奥儿童医院在2010年开设了一个全新的设施。Le Bonheur旨在实现节能和社会责任。Le Bonheur是美国第五家经LEED认证的儿童医院。


由于某些原因,引导CSS不允许在标题中添加额外的
。这样做会隐藏任何内部链接

您必须考虑一种解决方法,使样式恢复到您想要的样式,但是如果您删除这些额外的
标记,则链接将变得可单击。e、 g:

<div class="item">
  <img src="/images/photos/experience-le-bonheur/hospital-first/First1.jpg">
  <span class="carousel-caption row-fluid">
   **REMOVE THIS-> <div class="span9 caption">
     <p>Le Bonheur Children’s Hospital opened an entire new facility in 2010. Le Bonheur is designed to be energy efficient and socially responsible. Le Bonheur is the fifth LEED-certified children’s hospital in the U.S.</p> 
    **REMOVE THIS-> </div>

    ** REMOVE THIS-> <div class="span3 action">
        <a class="btn btn-large pull-right" href="http://lebonheur.org/our-services/emergency-medicine/">Emergency Medicine</a>      
    **REMOVE THIS-> </div>
  </span>

**删除此->
勒博尼奥儿童医院在2010年开设了一个全新的设施。Le Bonheur旨在实现节能和社会责任。Le Bonheur是美国第五家经LEED认证的儿童医院。

**删除此-> **删除此-> **删除此->
因此,您的新标记如下所示:

<div class="item">
   <img src="/images/photos/experience-le-bonheur/hospital-first/First1.jpg"/>
   <span class="carousel-caption row-fluid">
      <p>Le Bonheur Children’s Hospital opened an entire new facility in 2010. Le Bonheur is designed to be energy efficient and socially responsible. Le Bonheur is the fifth LEED-certified children’s hospital in the U.S.</p> 
      <a class="btn btn-large pull-right" href="http://lebonheur.org/our-services/emergency-medicine/">Emergency Medicine</a>
   </span>
</div>

勒博尼奥儿童医院在2010年开设了一个全新的设施。Le Bonheur旨在实现节能和社会责任。Le Bonheur是美国第五家经LEED认证的儿童医院。


这是因为
转盘指示器遮住了标题区域。
只需使用指示灯的彩色背景即可进行验证。
因此,只需将
.carousel indicators
的任何指定高度值设置为小于
.carousel caption
区域

这就解决了我的问题:

.carousel-indicators{ 
    height: 16px; 
}

这是因为
.carousel指示器
屏蔽了标题区域。
只需使用指示灯的彩色背景即可进行验证。
因此,只需将
.carousel indicators
的任何指定高度值设置为小于
.carousel caption
区域

这就解决了我的问题:

.carousel-indicators{ 
    height: 16px; 
}

您是否尝试过将该
更改为
?这就足够让它为我工作了我完全错过了那个。这完全奏效了*金星!您是否尝试过将该
更改为
?这就足够让它为我工作了我完全错过了那个。这完全奏效了*金星!