阅读下面HTML代码,如果期望tabs位于box容器的右下角,则需要添加的CSS样式是()。
A.
#box{ position:relative; } #tabs { position:right bottom;}
B.
#box{ position:relative;} #tabs {position:absolute; right:0; bottom:0;}
C.
#tabs{ position:relative; right:0; bottom:0;}
D.
#tabs{ position:absolute; right:0; bottom:0;}