gpt4 book ai didi

css - 我怎样才能只显示 Angular 边界?

转载 作者:数据小太阳 更新时间:2023-10-29 09:12:43 25 4
gpt4 key购买 nike

我想知道是否可以在 CSS 中制作边框但仅限于 Angular 。像这样:

****                         ****
* *
* *

CONTENT

* *
* *
**** ****

最佳答案

假设<div id="content">CONTENT</div>CONTENT包含至少一个 HTML 节点。

#content {position:relative}
#content:before, #content:after, #content>:first-child:before, #content>:first-child:after {
position:absolute; content:' ';
width:80px; height: 80px;
border-color:red; /* or whatever colour */
border-style:solid; /* or whatever style */
}
#content:before {top:0;left:0;border-width: 1px 0 0 1px}
#content:after {top:0;right:0;border-width: 1px 1px 0 0}
#content>:first-child:before {bottom:0;right:0;border-width: 0 1px 1px 0}
#content>:first-child:after {bottom:0;left:0;border-width: 0 0 1px 1px}

这是一个 Fiddle

关于css - 我怎样才能只显示 Angular 边界?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14387690/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com