Bonjour, j'ai déjà posé une question générale sur le sujet, j'en suis à contrôler si ma syntaxe retenue conviendrait, ou est-il préférable de contrôler la taille de l'écran par JavaScript ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
 @media screen and (max-width:1024px) {
#main {
	float: left;
}
#page {
	width: auto;
	margin: 0 0;
}
.main-contact {
	width: 920px !important;
	float: none !important;
	margin: 0 auto !important;
}
.align1 .the_content > p:first-child, .align0 .the_content p {
	width: 100%;
}
.bulle-dialog {
	margin-left: 90px;
}
#branding hgroup {
	width: 900px!important;
}
.page-produit-header {
	margin-left: -0.2%!important;
}
.porduit-menu {
	width: auto;
	position: auto;
	margin-top: 30px;
	float: left;
	position: auto;
	border: 3px solid red;
	z-index: 9999;
}
}