2014-02-25 61 views

回答

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(一個更大的紅點,所以很明顯)

+0

謝謝你的回答。那麼div(n,m)座標怎麼樣?我想着色整個div。 – Haradzieniec

+1

@Haradzieniec只需添加'left:33px; top:11px;':http://jsfiddle.net/vu2bF/ –

0

您應該能夠使用:

first-pixel-color-top-left-color: #f00; 
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; 
} 
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; 
} 

http://jsfiddle.net/m3GMc/1/

或通過圖像。