バナー設置君をスマホに設置したいのですが、下記ソースを短くする方法はありますでしょうか?
<div ="" id="fixedBanner1">
</a>
</div ="">
<style ="">
#fixedBanner1 {
position: fixed;
z-index: 9999;
margin: 0;
padding: 0;
top: 300px;
right: -250px;
text-align: center;
width: auto;
height: auto;
transition: 0.3s;
}
#fixedBanner1 img {
width: auto;
height: auto;
vertical-align: bottom;
}
#fixedBanner1:hover {
opacity: 0.7;
right: 0px;
}
</style ="">