答案 0 :(得分:3)
你可以这样做:
div:before{
position: absolute;
width:1px;height:1px;
background:red;
content:'';
}
div {
position: relative;
border:1px solid green;
height:200px;
background-color:yellow;
}
Demonstration(有一个更大的红点,这很明显)
答案 1 :(得分:0)
你应该可以使用:
first-pixel-color-top-left-color: #f00;
答案 2 :(得分:0)
对于浏览器兼容性,您可以在div中添加范围:
<div><span></span>hello</div>
然后添加样式:
div {
border:1px solid green;
height:200px;
background-color:yellow;
position:relative;
}
div span {
position:absolute;
height:1px;
width:1px;
background:red;
top:0;
left:0;
}
答案 3 :(得分:0)
通过这种方式:
div {
position: relative;
border:1px solid green;
height:200px;
background-color:yellow;
}
div span {
position: absolute;
top: 0;
left: 0;
height: 1px;
width: 1px;
background: red;
}
或通过图片。