我不得不自发地说,我能想到的唯一解决方案是不幸的是使用Javascript。就像是:
<script type="text/javascript"> if (document.location.hash == "" || document.location.hash == "#") document.location.hash = "#updates-list";</script>
编辑:
好的,有CSS解决方案。但是,这需要将默认条目
#updates-list放置在最后(
#updates-map您可以添加的其他选项卡之后):
.tab, .tab:target ~ #updates-list { display: none;}#updates-list, .tab:target { display: block;}


