0

我正在为位于内容 div 上的倾斜选项卡开发高级样式。

我刚刚解决了它,遵循创建建议以遵循 :before 和 :after 来塑造 div。但是,我一直试图让 div 本身使用最大宽度而不是宽度:

HTML

<br>
<div class="tab">Really really really really really really long content title</div>
<div class="tab-content">Content text</div>

CSS

.

tab-content, .tab, .tab:before, .tab:after {
    background-color: #f5f5f5;
}
body {
    background-color: #666;
}
.tab-content {
    border-left: 1px solid blue;
    border-right: 1px solid blue;
    border-bottom: 1px solid blue;
    border-top: 1px solid blue;
    margin-top: -1px;
    padding-top:10px;
    padding-bottom:20px;
    padding-left:10px;
    padding-right:10px;
}
.tab:before {
}
.tab {
    max-width: 150px;
    display:block;
    border-left: 1px solid blue;
    border-top: 1px solid blue;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    height: 50px;
    border-radius: 15px 100px 0px 0px;
    position: relative;
    z-index: 100000000;
    line-height:50px;
    padding-left:20px;
}
.tab:after {
    border-right: 1px solid blue;
    border-top: 1px solid blue;
    border-top-left-radius: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 00px;
    display: block;
    content:" ";
    width: 150px;
    height: 50px;
    top: -1px;
    position: absolute;
    right: -28px;
    transform:skewX(45deg);
    -ms-transform:skewX(45deg);
    -webkit-transform:skewX(45deg);
    z-index: -1;
}

有任何想法吗?

jsFiddle在这里:http: //jsfiddle.net/robmc/ZvEyx/9/

4

2 回答 2

2

如果您对语义不太讲究,可以尝试:

<div class="tab"><div>Really really really really really...</div></div>

并添加以下 CSS 规则:

.tab div {
    outline: 1px dotted blue; /* for demo only... */
    overflow: hidden;
    height: inherit;
}

<div>可以用标题替换子项,这可能有助于 SEO。

小提琴:http: //jsfiddle.net/audetwebdesign/dyCXT/

于 2013-05-30T01:51:35.140 回答
1

一种方法是在 上将文本颜色设置为透明.tab,然后使用:first-line伪元素仅将第一行上的文本设置为具有颜色。

.tab {
    color: transparent;
}
.tab:first-line
{
    color: #000;
}

这是一个jsFiddle

编辑

我对它进行了一些修改,我认为更好的解决方案是将font-sizeandline-height设置.tab0px. :first-line然后只需使用伪元素将它们设置为您喜欢的任何内容。This way the invisible lines won't become visible when text is selected (which is an issue with my original answer).

.tab:first-line {
    font-size: 16px;
    line-height: 50px;
}
.tab {
    font-size: 0px;
    line-height: 0px;
}

这是jsFiddle这种方法的一个。

于 2013-05-30T00:37:44.513 回答