gpt4 book ai didi

css - 编辑后的 ​​CSS 虚线

转载 作者:太空宇宙 更新时间:2023-11-04 03:46:49 27 4
gpt4 key购买 nike

我是 CSS 的新手,正在网上寻找自动重新压缩图像的代码,我发现的代码可以完美地做到这一点。但正确的是,它重新调整图像周围的一些红色虚线,当我尝试编辑时,整个图像消失了。可以请有人帮我解决图像显示时如何摆脱红色虚线的问题。

<style type="text/css">
#holder {
width: 500px;
margin: 0 auto;
}
.tile {
padding: 10px 15px;
border: 1px solid black;
width: 300px;
height: 300px;
display: table;
}
.tile-layout {
width: 100%;
height: 100%;
display: table-cell;
vertical-align: middle;
}
.tile img {
outline: 1px dashed red;
width:100%;
}
</style>

最佳答案

去掉 outline 属性:

<style type="text/css">
#holder {
width: 500px;
margin: 0 auto;
}
.tile {
padding: 10px 15px;
border: 1px solid black;
width: 300px;
height: 300px;
display: table;
}
.tile-layout {
width: 100%;
height: 100%;
display: table-cell;
vertical-align: middle;
}
.tile img {
width:100%;
}
</style>

outline 是一个 CSS2 属性,与 border 几乎相似

这是一篇关于它的文章:http://css-tricks.com/almanac/properties/o/outline/

关于css - 编辑后的 ​​CSS 虚线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23982843/

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