Reputation: 63
It is possible to change my navigation menu title "Lorem Ipsum Dolor Sit Amet" (laptop screen) to "LIDSA" (mobile screen) using CSS/Boostrap? How can I do it? Thank you!
Below are the example:
Upvotes: 0
Views: 97
Reputation: 20764
Yes you can, using pseudo class with content
and attr()
function:
Check it using full screen and try to reduce the width of the window
[data-full]::before {
content: attr(data-full);
}
@media only screen and (max-width: 520px) {
[data-short]::before {
content: attr(data-short);
}
}
<a href="#" data-full="Lorem Ipsum Dolor Sit Amet" data-short="LIDSA"></a>
Upvotes: 1