3

我真的把头发拉出来了。我不专业地或定期地做网页;我真的很难过。

你可以在这里访问我的工作进度页面:

http://damienivan.com/wip/042/

如果您将鼠标悬停在“特色作品”下方的某个按钮上,则仅当您的光标位于按钮的上半部分时才会出现悬停状态和“链接手指”。

CSS是:

    .work_button    
        {
        width:              174px;
        height:             58px;
        float:              left;
        background:         #3FC0E9;
        border-right:       4px solid #30A9D0;
        }

    .work_button:hover
        {
        background:         #FFF;
        color:              #30A9D0;
        }

HTML 是:

<a href="demo_reel.html" target="video_player">
    <div class="work_button">
        <h2>demo reel</h2>
    </div>
</a>

完整的 CSS 文件位于:

http://damienivan.com/wip/stylesheets/main.css

提前致谢!我真的被困在这里了。

-达米安

4

8 回答 8

3

尝试增加 work_wrapper 的高度

尝试这个:

#work_wrapper {
    height: 125px;
    padding-top: 14px;
    position: relative;
    width: 890px;
}

或者你也可以试试这个

#footer_wrapper { clear: both; }
于 2013-05-27T11:19:58.007 回答
2

问题是你的#work_wrapper div 有一个固定的高度(坏主意)。删除该高度,并将其设置为overflow: hidden使其环绕您的按钮:

#work_wrapper {
width: 890px;
height: 100px;    /*  REMOVE THIS  */
padding-top: 14px;
position: relative;
overflow: hidden;  /*  ADD THIS  */
}

此外,您不应该真正在链接中使用divand h2。把它们去掉,然后这样做:

HTML:

<a href="demo_reel.html" target="video_player">demo reel</a>

CSS:

#work_button_wrapper a {
  display: block;
  float: left;
  width: 174px;
  text-align: center;
  line-height: 58px;
  background: #3FC0E9;
  font-size: 1.25em;
}

#work_button_wrapper a:hover {
  background: white;
  color: #3FC0E9;
}
于 2013-05-27T11:29:02.267 回答
1

这个 css 语句可以帮助你:

 #footer_wrapper { clear: both; }

顺便说一句:将 div 嵌套到锚标记中是无效的。

于 2013-05-27T11:15:44.963 回答
1

使用 Google Chrome 或 Mozilla Firefox 来调试您的网页。两种浏览器都可以选择使用 webdeveloper 工具,这将使您可以更好地可视化 CSS。这将帮助您真正了解正在发生的事情,在这种情况下,有一个 cssobject 阻塞了您的按钮的一半。Firefox 的一大优点是它有一个 3D 视图选项。起初它看起来很怪异,但在尝试查看 CSS 中发生的事情时它真的很有帮助。

于 2013-05-27T11:15:52.760 回答
0

移动a tag到内部div并为标签添加宽度和高度(您已经为覆盖 a 标签的 div 提供了,因此将相同的和提供给height and width没有错)heightwidtha tag

#work_button_wrapper
        {
        width:              890px;
        float:              left;
        padding-top:        9px;
        /* border:              2px solid #FFF; */
        }

    .work_button    
        {
        width:              174px;
        height:             58px;
        float:              left;
        background:         #3FC0E9;
        border-right:       4px solid #30A9D0;
  text-align:center
        }
    .work_button a
        {
        text-decoration:    none;
        font-size:          15px;
        color:              #FFF;
        height:58px;
        width:174px
}
h2{
  height:100%; width:100%
}
    .work_button a:hover
        {
        background:         #FFF;
        color:              #30A9D0;
        }

    .work_button_last
        {
        width:              178px;
        border-right:       0px solid #30A9D0;;
        }   


#work_button_wrapper a:hover
        {
        /* background:          #3FC0E9; */
        background:         #FFF;
        color:              #30A9D0;
        }
.work_button:hover
        {
        background:         #FFF;
        color:              #30A9D0;
        }

演示

于 2013-05-27T11:31:31.143 回答
0

You're mixin inline and block elements. Inspect the H2 and you see the clickable elements ends there.

enter image description here

Refactored HTML below:

<div id="work_button_wrapper">

    <a href="demo_reel.html" class="work_button" target="video_player">            
            demo reel           
    </a>

    <a href="hp.html" class="work_button" target="video_player">          
            hp            
    </a>

    <a href="free_world.html" class="work_button" target="video_player">    
            free world          
    </a>

    <a class="work_button" href="dabo.html" target="video_player">           
            dabo            
    </a>

    <a class="work_button" href="sugar_skull.html" target="video_player" class="work_button work_button_last">           
            sugar skull          
    </a>

</div>

CSS:

body {
font: 17px/19px Helvetica, sans-serif;
color: #FFF;
}

#work_button_wrapper
    {
    width:              890px;
    float:              left;
    padding-top:        9px;
    overflow:hidden;
    }

.work_button    
    {
    width:              174px;
    float:              left;
    overflow: hidden;
    background:         #3FC0E9;
    border-right:       4px solid #30A9D0;
        color: #fff;
        text-decoration: none;
        display: block;
        font-size: 24px;
        font-weight: normal;
        letter-spacing: -1.5px;
        text-align: center;
            padding: 20px 10px;
}

.work_button:hover
    {
    background:         #FFF;
    color:              #30A9D0;
    }

.work_button_last
    {
    width:              178px;
    border-right:       0px solid #30A9D0;;
    }   

http://jsfiddle.net/brutusmaximus/ZPunN/

于 2013-05-27T11:23:30.443 回答
0

问题是页面的页脚。它在按钮上方。

给按钮一个 z-index,它会很好用!

你总是可以给你的页脚一个z-index:-1;

按钮将显示在顶部并悬停在整个按钮上

于 2013-05-27T11:16:56.003 回答
0

我有同样的问题。对我来说,父 div 有 position:fixed 并且在按钮上方是不可见的,这很难确定。

于 2019-04-17T20:17:12.457 回答