- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我想创建如下图所示的边框:
这段代码是我写的
<p>Some Text</p>
p{
-webkit-transform: perspective(158px) rotateX(338deg);
-webkit-transform-origin: right;
border: 2px dashed red;
}
但是这段代码没有返回我期望的输出,并且与图像不同。我想像图像中那样倾斜左边框的顶部。边 Angular 。我如何创建带有附加图像样式的边框?谢谢
最佳答案
使用 CSS:
您可以使用几个伪边框和虚线边框对单个元素执行此操作。
形状形成如下:
:after
伪元素创建的。这个伪元素的宽度比父元素小 40px,因为上边框仅在倾斜的边框区域之后开始。此元素的高度为 40 像素,使用绝对定位位于容器上方。:after
伪元素创建。:before
伪元素创建的。该元素的高度和宽度是使用用于计算直 Angular 三 Angular 形斜边的三 Angular 函数计算的。输出也是响应式的,正如您将鼠标悬停在 div 上所看到的那样。
div {
position: relative;
height: 60px;
width: 200px;
border: 3px dashed red;
border-width: 0px 3px 3px 3px;
margin-top: 80px;
}
div:after {
position: absolute;
content: '';
height: 40px;
width: calc(100% - 40px);
top: -40px;
left: 40px;
border-top: 3px dashed red;
border-right: 3px dashed red;
}
div:before {
position: absolute;
content: '';
height: 56.56px;
width: 56.56px;
top: 0%;
left: -3px;
border-top: 3px dashed red;
transform: rotate(-45deg);
transform-origin: left top;
}
/* just for demo */
div {
transition: all 1s ease;
}
div:hover {
height: 120px;
width: 300px;
}
<div></div>
使用 SVG:
这也可以使用 SVG 创建。所需要的只是所需形状的路径
(或多边形
),然后在路径
上设置stroke-dasharray
code> 创建虚线笔画。
div {
position: relative;
height: 100px;
width: 300px;
}
svg {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
}
path {
fill: none;
stroke: red;
stroke-width: 2;
stroke-dasharray: 10;
}
<div>
<svg viewBox='0 0 300 100' preserveAspectRatio='none'>
<path d='M40,2 298,2 298,98 2,98 2,40z' vector-effect='non-scaling-stroke' />
</svg>
</div>
关于html - 元素周围的虚线边框,左边框的顶部倾斜/成 Angular ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36709158/
我正在开发一个需要在屏幕上查找对象的程序,到目前为止工作正常,但我遇到了多显示器配置问题。 GraphicsEnvironment.getLocalGraphicsEnvironment().getS
使用 mySql,我想列出客户对特定产品类别进行的所有购买。 所以,我有 3 个表:客户 (idCustomer, Name)、类别 (idCategory, CategoryName) 和订单 (i
我的网站上有一个关于 background-size:cover 的小问题我一直在 Firefox 中测试它,但是当我在谷歌浏览器中加载页面时,我在左边得到 1px 的白色。当我使用 backgrou
我已经搜索了几个小时来找到解决我的问题的方法,但没有成功。我遇到的问题是两个按钮的垂直堆叠。 这就是我想要做的:它说按钮在这里两次是我试图放置按钮的地方,但我所能做的就是让它们水平排列而不是垂直排列。
我有一个包含多个元素的导航栏。 Left1 Left2 Left3 Right1 Right2 Right3 我不知道如何将“fixedLef
您好,我正在尝试让 2 个 div 在左侧与右侧对齐。 #div1 #div2 #div1 #div2 #div3 #div2 #div3 #div3 诀窍是当浏览器窗口变小时,我希望#div2 位于
body { font-family: Arial, Helvetica, sans-serif; font-size: 13px;
这个问题在这里已经有了答案: In CSS Flexbox, why are there no "justify-items" and "justify-self" properties? (6
这是我的代码的 jsfiddle 链接: https://jsfiddle.net/Krisalay/zvxxeagh/ 我的 HTML 代码是: MESSAGE 1
所以我有 10 个复选框,每个标签都取自数组中相应的索引。我正在使用 ng-repeat 来展示它们: {{entity}}
我是一名优秀的程序员,十分优秀!