#リンク
と [リンク]
は、まったく同じ機能を持つ。 #リンク
[リンク]
style.cssa[type=hashtag]{
display: inline-block;
padding: 0.2em 0.4em;
text-decoration: none;
background: aliceblue;/*ボタン色*/
background: #fff;
border: 1px solid dodgerblue;
color: #000;
border-radius: 3px;
transition: .3s;
-webkit-transform: scale(1);
transform: scale(1);
}
a[type="hashTag"]:hover{
-webkit-transform: scale(1.1);
transform: scale(1.1);
}