0

我想通过 css 实现这个想法: 在此处输入图像描述

在 CSS 中做到这一点的最佳方法是什么?非常感谢 !!

更新

我以前用标题做过这个技巧,更多信息在这里: 将标题放在 CSS 中的 2 条水平线内

但是当我尝试编辑标题版本时,按钮也不起作用。

4

2 回答 2

2

http://jsfiddle.net/pB9MY/

body { background: #fff;  }

h3 {
  width: 500px;
  font: 30px Arial;
  font-weight: normal; 
  text-align: right;
  position: relative;
}

h3 span {
  background: #fff; 
  margin-right: 15%;
  padding: 0 20px;
}

h3:before {
  content: "";
  width: 100%;
  left: 0;
  top: 50%;
  position: absolute;
  z-index: -1;
  height: 0;
  border-top: 8px solid grey;
  opacity:.2
}
button{
  background-color:green;
  border:1px solid green;
  border-radius:5px;
  vertical-align:center;
}
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <h3><span><button>Hello</button></span></h3>
</body>
</html>
于 2013-07-22T21:35:30.553 回答
1

这就是你所追求的吗?

为文本创建一个 div...

<div class="rightrounded">Some Text</div>

并应用适当的CSS ...

.rightrounded {
    width: 100px;
    float: right;
    border-radius: 5px;
    background-color: #008000;
    color: #fff;
    text-align: center;
}

在这里提琴

于 2013-07-22T21:37:36.293 回答