-2

我在 div 框中有一条很长的消息,我正在寻找一种方法来显示带有滚动条(垂直)的 div 中的该文本消息,并且我有两个指向它的链接,如您所见:1)免责声明 2)行为上面的链接是超链接,所以当我点击这些链接时,我会根据选择显示下面的 div。那么有可能用漂亮的模型div或其他东西在超链接下方显示div吗?

我不是 CSS 人,所以如果可能的话,让 div 框看起来很棒:)

<span ><a href="#" >Disclaimer-1</a></span> <span class="slide1">
        &nbsp; &nbsp; | &nbsp; &nbsp; <a href="#" class="slide1">Behavior</a></span>
    <div id="one" >
        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s 
    </div>
    <div id="second" >
          Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s    
    </div>
4

2 回答 2

1

如果你想要一个滚动条,设置 aheight然后设置overflowautoor scroll

div#one,
div#two
{
    height: 120px;
    overflow: auto;
}

至于您的最新编辑,您正在寻找 JavaScript 来实现类似的东西。

于 2012-04-26T04:50:26.500 回答
0

嗨,在左侧制作滚动条并格式化页面,请找到您可以使用的基本 css。

<style type="text/css">
        #one{
            overflow-y: scroll;
            padding:  15px;
            height: 150px;
            line-height: 25px;
            margin: 20px 0px 20px 0px;
        }
        #second{
            overflow-y: scroll;
            padding:  15px;
            height: 150px;
            line-height: 25px;
        }
        span a{
         padding-left:15px;
         color:blue;
         text-decoration: none;
         }
        span a:hover{
         padding-left:15px;
         color:blue;
         text-decoration: none;
        }

    </style>

请指定要点when i click on the div i just need the div to be underneath the links

谢谢..

于 2012-04-26T05:23:25.887 回答