<link rel="stylesheet" media="(max-width: 700px)" href="example.css" />
@import url(example.css) (max-width: 700px);
@media (max-width: 700px) {
/* Здесь прописывается CSS-правила */
}
<svg width="1200" height="320" xmlns="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<path id="path" fill="#F9F9F9">
<animate attributeName="d" dur="4000ms" repeatCount="indefinite"
values="m0,-1l1200,0l0,192c-50.41666,-1.24999 -95.83335,1.24999 -146.25002,0l-153.74998,0c-50,-1.66666 -104.99998,0.41667 -154.99998,-1.24999l-145.00002,1.24999c-50,-1.66666 -114.99993,0.41667 -164.99993,-1.24999l-135.00007,2.49998c-50,-2.91665 -98.75,0.41667 -148.75,-2.49998l-151.25,1.24999l0,-192z;
m0,-1l1200,0l0,192c-50.41666,-1.24999 -97.08334,-57.49972 -147.50001,-58.74971l-152.49999,58.74971c-50,-1.66666 -102.49999,-57.08305 -152.49999,-58.74971l-147.50001,58.74971c-50,-1.66666 -106.24997,-48.33309 -156.24997,-49.99975l-143.75003,51.24974c-50,-2.91665 -95.00002,-57.08305 -145.00002,-59.9997l-154.99998,58.74971l0,-192z;
m0,-1l1200,0l0,192c-50.41666,-1.24999 -95.83335,1.24999 -146.25002,0l-153.74998,0c-50,-1.66666 -104.99998,0.41667 -154.99998,-1.24999l-145.00002,1.24999c-50,-1.66666 -114.99993,0.41667 -164.99993,-1.24999l-135.00007,2.49998c-50,-2.91665 -98.75,0.41667 -148.75,-2.49998l-151.25,1.24999l0,-192z;
"/>
</path>
</g>
</svg>
const records =[
{'name' :'Pink Floyd The Dark Side of the Moon'},
{'year': '1973'},
{'country': 'london'},
{'date': 'March 24'},
{'type':'music album'},
{'name' :'Dark Side of the Moon'},
{'year': '1986'},
{'country': 'paris'},
{'date': 'March 14'},
{'type':'video album'},
]
// сначала разбиваем на массив по 5 объектов
const nz = records.reduce((acc,c,i,arr) => {
if ((i % 5) === 0) acc.push([]);
acc[acc.length - 1].push(c);
return acc;
}, [])
// затем сливаем объекты
const rez = nz.map(ob=>{
return Object.assign({}, ...ob)
})
// результат
console.log(rez)
<a data-mylink='copyticker' href='#'>coins1</a>
<a data-mylink='copyticker' href='#'>coins2</a>
<a data-mylink='copyticker' href='#'>coins3</a>
const copy = document.querySelectorAll('a[data-mylink]')
...
var change_dive = document.getElementsByClassName('changeblock')[0];
change_dive.insertBefore(change_main, null);
if (isset($_POST['currentTier']) && strpos($_GET['type'], 'placements')===false) $description .= "<div id=details-2 class='col-12 col-xl-4 col-lg-12 mb-xl-5 mb-5'><div class='d-flex b-skills'><div class='height:70px;'><div class='text-bold'>Текущая лига:</div> <div class='text-primary'> ".$tiers[$_POST['currentTier']]."</div></div></div></div></br>";