<?php
if(isset($rowa['title'])) {
echo 'style="@media (min-width: 768px) {grid-area: 4 / 2 / span 1 / span 1} "';
}
?>
when I remove @media (min-width)
the code is executed successfully
<?php
if(isset($rowa['title'])) {
echo 'style="@media (min-width: 768px) {grid-area: 4 / 2 / span 1 / span 1} "';
}
?>
when I remove @media (min-width)
the code is executed successfully