我正在尝试创建具有倾斜边的标题,无论它们出现的高度如何都能保持其纵横比。这可以单独使用CSS吗?
此图像显示标题如果只有一行长度的样子:
如果它们长两行或多行,它们应该显示为:
我遇到的问题是,我不能使覆盖标题右侧部分的白色半三角形调整大小,更不用说以相同的宽高比调整大小。以下是多行上发生的情况:
现在显示标题的代码是:
HTML:
<header>
<nav>
<ul>
<li><a href="#">Public Information</a></li>
</ul>
</nav>
<h1>Board Meeting Schedule</h1>
</header>
CSS:
* {
font-family: sans-serif;
font-size: 16px;
font-weight: normal;
line-height: normal;
margin: 0;
}
header {
background: #0D3C5B;
display: inline-block;
overflow: hidden;
padding: 18px 80px 12px 20px;
position: relative;
}
header:before {
border-left: 58px solid transparent;
border-top: 62px solid #FFF;
content: "\0020";
display: block;
height: 0;
position: absolute;
right: 0;
top: 0;
width: 0;
}
header nav {
float: left;
margin: 0 6px 0 0;
}
header nav ul {
color: #42AFE3;
display: inline-block;
font-size: 0.75em;
font-weight: bold;
line-height: 1.6666666666666666666666666666667em;
line-height: 2.25em;
list-style: normal;
margin: 0;
padding: 0;
text-transform: uppercase;
}
header nav ul li {
display: inline-block;
}
header nav ul li a {
color: #42AFE3;
text-decoration: none;
}
header nav ul li:after {
content: "\003E";
padding: 0 4px;
}
header h1 {
color: #FFF;
float: left;
font-size: 1.25em;
font-weight: bold;
line-height: 1em;
text-transform: uppercase;
}
header:after {
clear: both;
content: "\0020";
display: block;
visibility: hidden;
}
这是一个小提琴:http://jsfiddle.net/doLuj6me/
答案 0 :(得分:6)
烨!三角边界技巧 awesome 但不幸的是,当涉及动态大小的元素时,它非常不灵活。
幸运的是,CSS3为我们提供了一些以游戏方式利用的新工具。
这是你做的:
<强> CSS 强>
header {
background: #0D3C5B;
display: inline-block;
overflow: hidden;
padding: 18px 80px 12px 20px;
position: relative;
}
header:before {
content:'';
transform:rotate(45deg);
transform-origin: bottom right;
height: 100%;
width: 100%;
background-color: white;
position: absolute;
right: 0;
}
这就是它的核心。我们在标题的末尾放置了一个伪元素,将其扭曲45度并使其大到可以覆盖任何合理的大小。
瞧。
答案 1 :(得分:0)
尝试将右三角形设置为位置:绝对;和右:0;底部:0;如果文本变长,你需要负责确保文本没有被覆盖...同时确保包含的div有溢出:剪辑设置所以右边的三角形不会逃脱div :)
嗯......我错过了你没有为三角形提供单独的元素。您应该将标题拆分为带有文本div和右三角形div的容器。如上所述,容器应该具有位置:relative和right triangle div。
答案 2 :(得分:0)
以下是一个不使用变换或旋转的示例:
http://jsfiddle.net/ryanwheale/twxgnjcw/
尝试更改DIV的高度,您会看到倾斜的线条与DIV一起增长。
div {
height: 400px;
background: blue;
position: relative;
overflow: hidden;
}
div:after {
content: " ";
position: absolute;
width: 0;
height: 0;
left: 100%;
bottom: -2000px;
margin-left: -2000px;
border-width: 2000px;
border-style: solid;
border-color: white transparent transparent;
}
答案 3 :(得分:0)
克里斯托弗走在正确的轨道上。您所要做的就是将header:before
置于右下角,让您的边框尺寸超出您的需要:
header:before {
content: " ";
display: block;
position: absolute;
bottom: 0;
right: 0;
height: 0;
width: 0;
border-left: 400px solid transparent;
border-top: 400px solid #FFF;
}
查看Fiddle。 (一些家政的更新链接)