我有以下代码:
<style type="text/css"> .clsLink { position: absolute; width: 100%; height: 1300px; } </style> <a href="http://www.somewhere.com" class="clsLink"></a>
链接将分为三个区域:
我如何处理这个问题?
三个链接标记并排显示为一个链接,请尝试以下操作:
html格式:
<a href="http://www.somewhere1.com" class="clsLink">please</a> <a href="http://www.somewhere2.com" class="clsLink">click</a> <a href="http://www.somewhere3.com" class="clsLink">here</a>
css格式:
.clsLink { width: 100%; height: 1300px; text-decoration: none; }