2

我有以下 HTML 文档:

<!DOCTYPE HTML>
<html>
    <head>
        <meta charset="utf-8">
        <title>Тег DIV</title>
        <style type="text/css">
            .block1 { 
                width: 200px; 
                background: #ccc;
                padding: 5px;
                padding-right: 20px; 
                border: solid 1px black; 
                float: left;
            }
        </style> 
    </head>
    <body>
        <div class="block1">Text Content</div>
    </body>
</html>

我如何描述风格以获得以下内容? 在此处输入图像描述

4

4 回答 4

4

直到 CSS4border-corner-shape属性处于危险之中!并且它没有实现,这可以通过使用 CSS3 转换来完成(保持border属性免费以供进一步使用):

HTML:

<div class="box">
  Text Content
</div>

CSS:

.box {
  width: 200px; 
  height: 35px;
  line-height: 35px;
  padding: 0 5px;
  background-color: #ccc;
  padding-right: 20px;
  border: solid 1px black;
  border-right: 0;  
  position: relative;
}

.box:after {
  content: "";
  display: block;
  background-color: #ccc;
  border: solid 1px black;
  border-left: 0;
  width: 35px;
  height: 35px;
  position: absolute;
  z-index: -1;
  top: -1px; /* pull it up because of 1px border */
  right: -17.5px; /* 35px / 2 */
  transform: skew(-45deg);
  -o-transform: skew(-45deg);
  -moz-transform: skew(-45deg);
  -webkit-transform: skew(-45deg);
}

这是JSBin 演示

注意:div上面的示例中还有一个class属性 of box2,它在没有使用 CSS3 声明的情况下实现,您可能会考虑使用它;)

于 2013-05-25T11:11:47.593 回答
0

如果我这样描述一个文件:

<!DOCTYPE HTML>
<html>
 <head>
  <meta charset="utf-8">
  <title>Тег DIV</title>
  <style type="text/css">
   .block1 { 
    width: 300px;
    height: 0px;
    border-style: solid;
    border-width: 200px 200px 0 0;
    border-color: #f200ff transparent transparent transparent;
   }
  </style> 
 </head>
 <body>
  <div class="block1">Text Content</div>
 </body>
</html>

我几乎得到了你需要的东西,但我不明白为什么图中没有文字?

于 2013-05-25T10:54:33.287 回答
0

很可能可以使用不可见的边界技巧来完成。网上有一些“三角生成器”,比如这个

于 2013-05-25T10:01:46.830 回答
0

这是解决方案

CSS 和 HTML:

    ul {
      position: relative;
      overflow: hidden;
      font: 14px Arial;
      margin: 0;
      padding: 0;
      list-style: none;
      text-align: center;
    }
    ul:before {
      content: "";
      position: absolute;
      z-index: -1;
      left: 124px;
      margin-left: -120px;
      width: 0;
      border-left: 0 solid transparent;
      border-right: 230px solid transparent;
      border-top: 179px solid #CCCCCC;
    }
    li {
      height: 3.8em;
      line-height: 3em;
      position: relative;
      margin-left: -562px;
    }
    li:after,
    li:before {
      content: "";
      display: block;
      height: 0.4em;
      background: #fff;
      width: 100%;
    }
<ul>
  <li>Text Content</li>
</ul>

您必须使用该border-width属性来获得所需的输出。

希望这可以帮助。

于 2013-05-25T10:38:59.630 回答