J'ai une fenêtre contextuelle qui affiche des résultats, et je veux qu'une barre de défilement soit affichée car les résultats sont coupés (et je ne veux pas que la fenêtre contextuelle soit trop longue).
Réponses
Trop de publicités?
Mitch Dempsey
Points
13568
Ricardo Lima
Points
109
Classe CSS pour avoir une belle Div avec défilement
.DivToScroll{
background-color: #F5F5F5;
border: 1px solid #DDDDDD;
border-radius: 4px 0 4px 0;
color: #3B3C3E;
font-size: 12px;
font-weight: bold;
left: -1px;
padding: 10px 7px 5px;
}
.DivWithScroll{
height:120px;
overflow:scroll;
overflow-x:hidden;
}
ScottyG
Points
51
Gabe
Points
24378
Daveontrak
Points
13
<head>
<style>
div.scroll
{
background-color:#00FFFF;
width:40%;
height:200PX;
FLOAT: left;
margin-left: 5%;
padding: 1%;
overflow:scroll;
}
</style>
</head>
<body>
<div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.better control of the layout. The default value is visible.better control of the layout. The default value is visible.better control of the layout. The default value is visible.better control of the layout. The default value is visible.better control of the layout. The default value is visible.better </div>
</body>
</html>