Ke faut-il que je rajoute pour diminuer l'espace entre 2 paragraphes ?

Ke faut-il que je rajoute pour diminuer l'espace entre 2 paragraphes ? - HTML/CSS - Programmation

Marsh Posté le 16-10-2002 à 10:09:38    

Voilà, j'ai mon js qui fais ça (c'est celui qui est sur ma page d'accueil du site en signature, dans la partie News de mon tableau):
 
document.write('<span style="font-family: Arial; font-size: 8pt; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal";><p align="justify"><b><font color="#FF9933">. </b></font><a href="http://catnatlive.free.fr/news_monde.html#inondations" a style="text-decoration: none" target="_self">1 disparu et 2000 évacués suite aux inondations qui touchent le Sud de l\'Argentine </a></font><font color="#FF9933">- 15 oct</font></p>';);
document.write('<span style="font-family: Arial; font-size: 8pt; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal";><p align="justify"><b><font color="#FF9933">. </b></font><a href="http://catnatlive.free.fr/news_monde.html#séismes" a style="text-decoration: none" target="_self">Séisme de mg 5.6 dans le Nord du Japon : pas de victime </a></font><font color="#FF9933">- 14 oct</font></p></span>';);
 
Je voudrais diminuer l'espace qui sépare les 2 news. Je sais qu'il faut utiliser "margin-bottom:X" mais je ne sais pas où le mettre  :(  
 
Désolé pour cette question con mais je débute... [:yorik]


---------------
Les catastrophes naturelles au quotidien c'est sur: http://www.catnat.net
Reply

Marsh Posté le 16-10-2002 à 10:09:38   

Reply

Marsh Posté le 16-10-2002 à 10:16:20    

Essaye déjà d'éditer ton message en choisissant un formatage fixe pour ton source, comme ici :
 


<html>
  <head>
    <title>Salut</title>
  </head>
  <body>
  ...
  </body>
</html>


 
ce sera plus lisible. Sinon ton problème doit pouvoir se résoudre à l'aide d'une propriété CSS pour la balise <p>.


---------------
Le site de ma maman
Reply

Marsh Posté le 16-10-2002 à 10:20:27    

yorik a écrit a écrit :

Voilà, j'ai mon js qui fais ça (c'est celui qui est sur ma page d'accueil du site en signature, dans la partie News de mon tableau):
 
document.write('<span style="font-family: Arial; font-size: 8pt; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal";><p align="justify"><b><font color="#FF9933">. </b></font><a href="http://catnatlive.free.fr/news_monde.html#inondations" a style="text-decoration: none" target="_self">1 disparu et 2000 évacués suite aux inondations qui touchent le Sud de l\'Argentine </a></font><font color="#FF9933">- 15 oct</font></p>';);
 
document.write('<span style="font-family: Arial; font-size: 8pt; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal";><p align="justify"><b><font color="#FF9933">. </b></font><a href="http://catnatlive.free.fr/news_monde.html#séismes" a style="text-decoration: none" target="_self">Séisme de mg 5.6 dans le Nord du Japon : pas de victime </a></font><font color="#FF9933">- 14 oct</font></p></span>';);
 
Je voudrais diminuer l'espace qui sépare les 2 news. Je sais qu'il faut utiliser "margin-bottom:X" mais je ne sais pas où le mettre  :(  
 
Désolé pour cette question con mais je débute... [:yorik]  




---------------
Les catastrophes naturelles au quotidien c'est sur: http://www.catnat.net
Reply

Marsh Posté le 16-10-2002 à 10:21:53    

Cherrytree a écrit a écrit :

Essaye déjà d'éditer ton message en choisissant un formatage fixe pour ton source, comme ici :
 


<html>
  <head>
    <title>Salut</title>
  </head>
  <body>
  ...
  </body>
</html>


 
ce sera plus lisible. Sinon ton problème doit pouvoir se résoudre à l'aide d'une propriété CSS pour la balise <p>.



 
 
Oui mais laquelle ?
Et comment appelle-t-on une css dans un JS ?


---------------
Les catastrophes naturelles au quotidien c'est sur: http://www.catnat.net
Reply

Marsh Posté le 16-10-2002 à 10:22:58    

Bon c'est toujours aussi peu lisible...
 
tu dois redéfinir les marges pour les tags paragraphes :
 

p {
  margin-bottom: 5px; /*valeur à régler*/
}


 
Par contre tu n'as pas le droit de mettre un <p> dans un <span>


---------------
Incongru : une FAQ abandonnée sur les Standards du Web - FAQ périmée de blabla@Prog
Reply

Marsh Posté le 16-10-2002 à 11:55:40    

sinon tu fé tout simlpmeent :

Code :
  1. document.write('<span style="font-family: Arial; font-size: 8pt; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal";><p align="justify" style="margin-bottom: 5px;"><b><font color="#FF9933">. </b></font><a href="http://catnatlive.free.fr/news_monde.html#inondations" a style="text-decoration: none" target="_self">1 disparu et 2000 évacués suite aux inondations qui touchent le Sud de l\'Argentine </a></font><font color="#FF9933">- 15 oct</font></p>');
  2. document.write('<span style="font-family: Arial; font-size: 8pt; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal";><p align="justify" style="margin-bottom: 5px;"><b><font color="#FF9933">. </b></font><a href="http://catnatlive.free.fr/news_monde.html#séismes" a style="text-decoration: none" target="_self">Séisme de mg 5.6 dans le Nord du Japon : pas de victime </a></font><font color="#FF9933">- 14 oct</font></p></span>');


 
 :hello:


Message édité par petoulachi le 16-10-2002 à 11:56:24
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed