Hallo,
Wenn Du beispielsweise ein Element mit id="foo" auf 100% Breite setzen willst, müsste es so aussehen:
@media (max-width: 768px) { #id { width: 100%; } }
gemeint war wohl:
@media (max-width: 768px)
{
#foo {
width: 100%;
}
}
Gruß
Kalk