-2

divボックス内に長いメッセージがあり、スクロールバー(垂直)を使用してdiv内にそのテキストメッセージを表示する方法を探しています。ご覧のとおり、2つのリンクがあります。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

スクロールバーが必要な場合は、を設定してから値またはheightを作成します。overflowautoscroll

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 に答える