链接指向不同的页面

问题描述 投票:0回答:1

我有以下编码:

<style type="text/css">
    .clsLink {
        position: absolute;
        width: 100%;
        height: 1300px;
    }
</style>

<a href="http://www.somewhere.com" class="clsLink"></a>

我需要根据用户在页面中单击的位置指向不同页面的链接。

该链接将分为三个区域:

  • 左区:计算((100% - 960px)/ 2)
  • 中区:960px
  • 右区:计算((100% - 960px)/ 2) 我该如何处理这个问题?
css href
1个回答
1
投票

三个链接标签从一侧到另一侧,所以它显示为一个链接,试试这个:

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;
 }
© www.soinside.com 2019 - 2024. All rights reserved.