我有预览框的div
HTML:
<div class="preview-content">PREVIEW</div>
CSS:
.preview-content { background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGklEQVQIW2NkYGD4D8SMQAwGcAY2AbBKDBUAVuYCBQPd34sAAAAASUVORK5CYII=) repeat; width: 100%; min-height: 300px; max-height: 300px; line-height: 300px; text-align: center; vertical-align: middle; font-size: 2em; }
注意:只有在可能的情况下才使用CSS
先谢谢你
解决方法
你可以这样做:
<style> .background { background-color: #BCBCBC; width: 100px; height: 50px; padding: 0; margin: 0 } .line1 { width: 112px; height: 47px; border-bottom: 1px solid red; -webkit-transform: translateY(-20px) translateX(5px) rotate(27deg); position: absolute; /* top: -20px; */ } .line2 { width: 112px; height: 47px; border-bottom: 1px solid green; -webkit-transform: translateY(20px) translateX(5px) rotate(-26deg); position: absolute; top: -33px; left: -13px; } </style> <div class="background"> <div class="line1"></div> <div class="line2"></div> </div>
这是一个jsfiddle。
改进版本answer为您的目的。