1. <legend id='ln1xF'><style id='ln1xF'><dir id='ln1xF'><q id='ln1xF'></q></dir></style></legend>
      <i id='ln1xF'><tr id='ln1xF'><dt id='ln1xF'><q id='ln1xF'><span id='ln1xF'><b id='ln1xF'><form id='ln1xF'><ins id='ln1xF'></ins><ul id='ln1xF'></ul><sub id='ln1xF'></sub></form><legend id='ln1xF'></legend><bdo id='ln1xF'><pre id='ln1xF'><center id='ln1xF'></center></pre></bdo></b><th id='ln1xF'></th></span></q></dt></tr></i><div id='ln1xF'><tfoot id='ln1xF'></tfoot><dl id='ln1xF'><fieldset id='ln1xF'></fieldset></dl></div>
      • <bdo id='ln1xF'></bdo><ul id='ln1xF'></ul>

      <small id='ln1xF'></small><noframes id='ln1xF'>

    1. <tfoot id='ln1xF'></tfoot>

      底部有锯齿形边框的容器仅适用于边框

      Container with zigzag border at bottom only apply to the border(底部有锯齿形边框的容器仅适用于边框)

          <tbody id='Vgzj2'></tbody>

            <legend id='Vgzj2'><style id='Vgzj2'><dir id='Vgzj2'><q id='Vgzj2'></q></dir></style></legend>
            • <small id='Vgzj2'></small><noframes id='Vgzj2'>

            • <tfoot id='Vgzj2'></tfoot>

              <i id='Vgzj2'><tr id='Vgzj2'><dt id='Vgzj2'><q id='Vgzj2'><span id='Vgzj2'><b id='Vgzj2'><form id='Vgzj2'><ins id='Vgzj2'></ins><ul id='Vgzj2'></ul><sub id='Vgzj2'></sub></form><legend id='Vgzj2'></legend><bdo id='Vgzj2'><pre id='Vgzj2'><center id='Vgzj2'></center></pre></bdo></b><th id='Vgzj2'></th></span></q></dt></tr></i><div id='Vgzj2'><tfoot id='Vgzj2'></tfoot><dl id='Vgzj2'><fieldset id='Vgzj2'></fieldset></dl></div>
                <bdo id='Vgzj2'></bdo><ul id='Vgzj2'></ul>
                本文介绍了底部有锯齿形边框的容器仅适用于边框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我试图制作一个底部有锯齿形边框的容器,如下所示:

                我试过了,但我不知道如何获取底部灰色背景的突袭,我只希望边框像图像一样是灰色的,有人可以帮忙吗?:

                此外,如果您希望也可以通过更改某些给定媒体查询的 background-size 来更改 zizag 的数量,例如

                @media all and (min-width: 800px) {/* 12 次背景重复 */div {背景大小:计算(100%/12)自动}}@media all and (min-width: 1200px) {/* 18 次背景重复 */div {背景尺寸:计算(100%/18)自动}}

                I trying to make a container which have zigzag border at bottom like below :

                I tried this but I don't know how get raid of that bottom gray background, I only want the border to be gray like the image, anyone can help on this? :

                https://jsfiddle.net/umw8yh21/1/

                HTML :

                <div class="myform">
                   <div class="myformMain">Content</div>
                   <div class="myformFooter"></div>
                </div>
                

                CSS :

                .myform{
                      border: 4px solid lightgrey;
                    border-bottom: none;
                }
                .myformMain {
                  height: 200px;
                    padding: 36px 0;
                    box-sizing: border-box;
                    background-color: white;
                }
                .myformFooter:after{
                content: " ";
                    display: block;
                    position: relative;
                    top: 0px;
                    left: 0px;
                    width: 100%;
                    height: 36px;
                    background: linear-gradient(white 0%, transparent 0%), linear-gradient(135deg, #272220 33.33%, transparent 33.33%) 0 0%, #272220 linear-gradient(45deg, #272220 33.33%, white 33.33%) 0 0%;
                    background: -webkit-linear-gradient(white 0%, transparent 0%), -webkit-linear-gradient(135deg, #d9d9d9 33.33%, transparent 33.33%) 0 0%, #d9d9d9 -webkit-linear-gradient(45deg, #d9d9d9 33.33%, white 33.33%) 0 0%;
                    background: -o-linear-gradient(white 0%, transparent 0%), -o-linear-gradient(135deg, #272220 33.33%, transparent 33.33%) 0 0%, #272220 -o-linear-gradient(45deg, #272220 33.33%, white 33.33%) 0 0%;
                    background: -moz-linear-gradient(white 0%, transparent 0%), -moz-linear-gradient(135deg, #272220 33.33%, transparent 33.33%) 0 0%, #272220 -moz-linear-gradient(45deg, #272220 33.33%, white 33.33%) 0 0%;
                    background: -ms-linear-gradient(white 0%, transparent 0%), -ms-linear-gradient(135deg, #272220 33.33%, transparent 33.33%) 0 0%, #272220 -ms-linear-gradient(45deg, #272220 33.33%, white 33.33%) 0 0%;
                    background-repeat: repeat-x;
                    background-size: 0px 47%, 14px 41px, 14px 42px
                }
                

                EDIT : Other similar answer is not exactlly what I looking for, I already checked them, I need a way to make the border with same size to be in zigzag shape, not using any svg/png or texture for it, only css.

                解决方案

                You could use SVG as a bottom-repeated background with the non-scaling-stroke property set

                    div {
                      width: 50%;
                      height: 180px;
                      border: 4px #ededed solid;
                      border-bottom: 0;
                      background-image: url('data:image/svg+xml;utf8, <svg viewBox="0 0 200 110" xmlns="http://www.w3.org/2000/svg"><path d="M -15 110 L100 10 L215 110" fill="none" stroke="%23ededed" stroke-width="4" vector-effect="non-scaling-stroke"/></svg>');
                      background-position: bottom left;
                      background-size: 10% auto;
                      background-repeat: repeat-x;
                    }

                <div></div>

                Just pick the same value for both the border width and the stroke-width attribute of the path.

                If you need to fill this element with text remember to add some room at the bottom (e.g. using a padding-bottom) so the content doesn't overlap the line.

                Also it's worth noting that the attribute vector-effect="non-scaling-stroke"will prevent the path to scale so you could seamlessly apply this background even to a responsive element (otherwise the normal border would keep the fixed width, while the SVG path would scale) e.g.

                Codepen demo

                Furthermore if you wish you could also change the amount of zizag by changing the background-size at some given mediaquery, e.g.

                @media all and (min-width: 800px) {
                  /* 12 background repetitions */
                  div { background-size: calc(100% / 12) auto }
                }
                
                @media all and (min-width: 1200px) {
                  /* 18 background repetitions */
                  div { background-size: calc(100% / 18) auto }
                }
                

                这篇关于底部有锯齿形边框的容器仅适用于边框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Embed YouTube video - Refused to display in a frame because it set #39;X-Frame-Options#39; to #39;SAMEORIGIN#39;(嵌入 YouTube 视频 - 拒绝显示在框架中,因为它将“X-Frame-Options设置为“SAMEORIGIN)
                Stop embedded youtube iframe?(停止嵌入 youtube iframe?)
                YouTube iframe API: how do I control an iframe player that#39;s already in the HTML?(YouTube iframe API:如何控制 HTML 中已有的 iframe 播放器?)
                Switch/toggle div (jQuery)(切换/切换 div (jQuery))
                Apply jquery (mobile) css classes programatically after rendering has occurred(呈现后以编程方式应用 jquery (mobile) css 类)
                How to avoid name clashes in JavaScript widgets(如何避免 JavaScript 小部件中的名称冲突)

                <small id='HlTNn'></small><noframes id='HlTNn'>

                  • <bdo id='HlTNn'></bdo><ul id='HlTNn'></ul>

                      <tbody id='HlTNn'></tbody>
                  • <i id='HlTNn'><tr id='HlTNn'><dt id='HlTNn'><q id='HlTNn'><span id='HlTNn'><b id='HlTNn'><form id='HlTNn'><ins id='HlTNn'></ins><ul id='HlTNn'></ul><sub id='HlTNn'></sub></form><legend id='HlTNn'></legend><bdo id='HlTNn'><pre id='HlTNn'><center id='HlTNn'></center></pre></bdo></b><th id='HlTNn'></th></span></q></dt></tr></i><div id='HlTNn'><tfoot id='HlTNn'></tfoot><dl id='HlTNn'><fieldset id='HlTNn'></fieldset></dl></div>

                        <legend id='HlTNn'><style id='HlTNn'><dir id='HlTNn'><q id='HlTNn'></q></dir></style></legend>
                        • <tfoot id='HlTNn'></tfoot>