Last active
December 1, 2017 01:29
-
-
Save sou5534/7ec52ff9d652a442a1fdaba9a5cde965 to your computer and use it in GitHub Desktop.
¥・税込・税抜表記
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span class="priceBox">3,990</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.priceBox { | |
display: block; | |
text-align: right; | |
@include fontsize(25); | |
&:before { | |
margin-right: 3px; | |
content: '\FFE5'; | |
@include fontsize(15); | |
} | |
&:after { | |
margin-left: 1px; | |
content: '\FF08\7A0E\629C\FF09'; //税抜 | |
//content: '\FF08\7A0E\8FBC\FF09'; 税込 | |
@include fontsize(15); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment