Maison > Questions et réponses > le corps du texte
P粉5026087992023-08-17 14:03:56
Essayez :
<style type="text/css"> .on-the-fly-behavior { background-image: url('particular_ad.png'); } @media screen and (max-width: 300px) { /* 添加screen and */ .on-the-fly-behavior { background-image: url('particular_ad_small.png'); } } </style>
P粉2141766392023-08-17 12:38:07
Dans un fichier .cshtml, vous ne pouvez pas l'utiliser directement car il sera traité comme une classe ou un objet. Lorsque vous devez ajouter @
开头的内容时,你需要额外添加一个@
dans un fichier html. Essayez d'utiliser le code suivant :
<style type="text/css"> .on-the-fly-behavior { background-image: url('particular_ad.png'); } @@media (max-width: 300px) { .on-the-fly-behavior { background-image: url('particular_ad_small.png'); } } </style>