Problème avec feuille de style (suite et fin)

individuelle08 Messages postés 6 Statut Membre -  
 DelepY -
Bonjour,

J'aimerais que le texte défile de gauche à droite: je crois qu'il existe la balise "marquée" mais comment l'insérer?

Merci
A voir également:

2 réponses

DelepY
 
un jour, je me suis fait un bloc-node..

WWW: World Wide Web
http://validator.w3c.org

<?XML  ?>

<HTML> la page </HTML>
	
	<!-- commentaire -->
	
	<Meta /> Méta-Données
	
	<Head> en-tête </Head>
		
		<Title> titre </Title>
		
		<Style> styles </Style>
		<Style src= >(vide)</Style>
		
		<Script language= > scripts </Script>
		<Script language= src= >(vide)</Script>
		<NoScript> compatibilité </NoScript>
		
	
	<Body> corps </Body>
			text= #colr
			background= url
			bgColor= #colr
			link= #colr
			aLink= #colr
			vLink= #colr
			scroll= yes|no
		
		<A hRef= > lien </A>
				target= frame
		
		<A name= > ancre </A>
		
		<H1> Titre niveau 1 </H1>
		...
		<H6> Titre niveau 6 </H6>
				align= 
		
		<B> Bold/ Gras </B>
		
		<I> Italique </I>
		
		<U> Underline/ Souligné </U>
		
		<Br /> Break/ à-la-ligne
		
		<P> Paragraphe </P>
				align= left|right|center
		
		<Font> Police </Font>
				face= nomPolice
				size= 
				color= 
		
		<Center> Centré </Center>
		
		<Big> Gros </Big>
		<Small> Petit </Small>
		
		<Sub> exposant </Sub>
		<Sup> indice </Sup>
		
		<Img src= /> images
				align= 
				width= 
				height= 
				alt= texte alternatif
				border= 0
				vSpace= 
				hSpace= 
				useMap= #map
		
		<Map name= > mapage d'une image </Map>
			
			<Area coords= hRef= /> lien-image/map
					shape= rect|circle|poly|..
					target= 
			
		
		<NoBr> NoBreak/ sans à-la-ligne automatique </NoBr>
		
		<Hr /> ligne Horizontal
				size= 
				width= 
				align= 
				color= 
				noShade= noShade
		
		<Table> Table </Table>
				border= 
				background= 
				align= 
				width= 
				cellPadding= 
				cellSpacing= 
			
			<Tr> TableRow/ ligne </Tr>
					height= 
					background= 
				
				<Td> TableData/ colonne </Td>
				<Th> TableHead/ en-tête </Th>
						width= 
						align= 
						vAlign= 
						background= 
						rowsPan= 
						colsPan= 
				
			
		
		<UL type= > Liste à Puce </UL>
				type= disc|square|circle
			
			<Li> ligne (unitaire) </Li>
			
		
		<OL type= > Liste Numéroté </OL>
				type= 1|A|a|I|i
				start= 
			
			<Li> ligne (unitaire) </Li>
			
		
		<Form action= method= > formulaire </Form>
				action= url|mailto:  (EncType="text/plain")
				method= get|post
			
			<Label for= > </Label>
			
			<Input type= /> entrée
					type= text|password | radio|checkbox | reset|submit|button|file
					name= 
					size= 
					value= 
					maxlength= 
					checked= checked
			
			<TextArea rows= cols= > zone de Texte </TextArea>
					name= 
					wrap= off|wrap
			
			<Select> zone de sélection </Select>
					name= 
					size= 
					multiple= multiple
				
				<Option /> option de sélection </Option>
						value= 
						selected= selected
				
			
			<Button> Bouton </Button>
					name=
			
		
		<Marquee> conteneur défilant </Marquee>
				loop= 
				beHavior= 
				direction= 
				bgColor= 
				height= 
				width= 
				scrollAmount= 
				scrollDelay= 
		
		<Div> Conteneur carré* </Div>
		
		<Span> Conteneur </Span>
		
		<Embed src= >
				width= 
				height= 
				autoStart= 
				loop= 
				hidden= 
		
		<FieldSet> cadre </FieldSet>
			
			<Legend> titre </Legend>
			
		
		<iFrame src= > cadre </iFrame>
				name= 
				height= 
				width= 
				scrolling= 
				marginWidth= 
				marginHeight= 
		
	<FrameSet> conteneur de Frame</FrameSet>
			cols= _,_,* ou rows
			rows= _,_,*
			border= 
			frameBorder= 
			borderColor= 
		
		<Frame src= />
				name= 
				scrolling= 
				noResize= noresize
				marginWidth= 
				marginHeight= 
		
	<NoFrame> compatibilité </NoFrame>
		
		
		
		
autre tag pré-Stylé:
	
			<Pre> Text </Pre>
			<Code> Code <Code>
			<Kbd> Clavier </Kbd>
			<Cite> Cite </Cite>
			<Dfn> Définition </Dfn>
			<Samp> Saisie </Samp>
			<Q> Citation </Q>
			<Tt> Script </Tt>
			<Stike> barré </Strike>

attribut Commun :
	title= (info-bulle)
	style=
	class=
	id= (pour <Script>)
	
0
DelepY
 
plus de détail :

<Marquee Loop="nbRépét." BeHavior="scroll|alternate|slide" Direction="left|right|down|up" BgColor="nom|#rrggbb" Height="hauteur" Width="largeur" ScrollAmount="pixel" ScrollDelay="millisec" > ton texte </Marquee>
0