Bonjour,
Je me permets je n'arrive pas à mettre en place correctement un "preg_replace" (php) pour faire ce qui suit. Pouvez vous m'aider ?
======================= >
======================= > CSS ORIGINAL :
======================= >
* {
clear:none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
display:block;
}
aside a, aside .a, aside p a, aside p .a {
color:#f7f7f7;
}
#informations_legales aside p a, #informations_legales aside p .a {
color:@666666;
}
audio, canvas, video {
display:inline-block;
}
audio:not([controls]) {
display:none;
}
======================= >
======================= > TRANSFORMER DE CETTE MANIERE (dupliquer et ajouter sous forme de class portant le même non que le type de balise HTML5) :
======================= >
* {
clear:none;
}
article, .article, aside, .aside, details, .details, figcaption, .figcaption, figure, .figure, footer, .footer, header, .header, hgroup, .hgroup, nav, .nav, section, .section {
display:block;
}
aside a, .aside a, aside .a, .aside .a, aside p a, .aside p a, aside p .a, .aside p .a {
color:#f7f7f7;
}
#informations_legales aside p a, #informations_legales .aside p a, #informations_legales aside p .a, #informations_legales .aside p .a {
color:@666666;
}
audio, .audio, canvas, .canvas, video, .video {
display:inline-block;
}
audio:not([controls]), .audio:not([controls]) {
display:none;
}
======================= >
======================= > LISTE DE BALISES HTML5 CONCERNEES : article|aside|audio|canvas|command|datalist|details|embed|figcaption|figure|footer|header|hgroup|keygen|mark|meter|nav|output|progress|rp|rt|ruby|section|source|summary|time|video|wbr
======================= >