¯ Pour ça, il te suffit de copier/coller le HTML ci-dessous, dans un nouveau billet :
<TABLE style="WIDTH: 411px; HEIGHT: 452px" background=adresse de ton image de ton fond border=0>
<TBODY>
<TR>
<TD>
<P align=center><FONT face="Lucida Handwriting, Cursive" color=#333399 size=5><STRONG>ton titre</STRONG></FONT></P></TD></TR>
<TR>
<TD>
<DIV align=center>
<DIV style="OVERFLOW: scroll; WIDTH: 300px; HEIGHT: 260px">
<P align=center><FONT face="Arial Black, Geneva, Arial, Sans-serif" color=#333399 size=4>ton texte ici</FONT></P></DIV></DIV></TD></TR></TBODY></TABLE>
¯ et connaître la valeur et les propriétés d'Overflow
AUTO : met une barre de défilement au besoin.
VISIBLE : rend visible tout ce qui dépasse.
HIDDEN : cache tout ce qui dépasse.
SCROLL : met une barre de défilement.
¯Peut-être, es tu un webmaster et à ce moment là, je te donne de quoi t'amuser pour colorer ta barre de défilement
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>nom de ta page</title>
<style>
<!--
BODY{
scrollbar-face-color:#8080FF;
scrollbar-arrow-color:#FFFFFF;
scrollbar-track-color:#DDDDFF;
scrollbar-shadow-color:'';
scrollbar-highlight-color:'';
scrollbar-3dlight-color:'';
scrollbar-darkshadow-Color:''
}
-->
</style>
</head>
<body onload="init()">
<script language="JavaScript1.2">
<!--
function scrollBar(line,face,theme)
{
if (!line||!face)
{
line=null;
face=null;
switch(theme) // Predefined themes
{
case "blue":
var line="#78AAFF";
var face="#EBF5FF";
break;
case "orange":
var line="#FBBB37";
var face="#FFF9DF";
break;
case "red":
var line="#FF7979";
var face="#FFE3DD";
break;
case "green":
var line="#00C600";
var face="#D1EED0";
break;
case "neo":
var line="#BC7E41";
var face="#EFE0D1";
break;
}
}
with(document.body.style)
{
scrollbarDarkShadowColor=line;
scrollbar3dLightColor=line;
scrollbarArrowColor="black";
scrollbarBaseColor=face;
scrollbarFaceColor=face;
scrollbarHighlightColor=face;
scrollbarShadowColor=face;
scrollbarTrackColor="#F3F3F3";
}
}
/*------------------[Pointer coordinates catcher]---------------*/
function colorBar(){
var w = document.body.clientWidth;
var h = document.body.clientHeight;
var x = event.clientX;
var y = event.clientY;
if(x>w||y-3>h) scrollBar('#000080','#BFDFFF'); // Your colors
else scrollBar(null,null,"neo"); // A predefined theme
}
if (document.all){
scrollBar(null,null,"neo");
document.onmousemove=colorBar;
}
function offscreen(){
scrollBar(null,null,"neo");
}
document.onmouseout=offscreen;
//-->
</script>
<pre lang="html"></pre>
¯ Tu as besoin d'un peu plus d'infos, n'hésite pas !!
