Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プログレス バーを設計しようとしていますが、数学的計算に応じてバーの幅を設定したいと考えています。
幅を60%にハードコーディングしているため、以下は正常に機能しています
.pledged(style="width:60%")
私はこのようなことをしたい:
.pledged(style="width:((totalVotes - votesRemaining)*100)%")
私が達成しようとしていることは可能ですか?
#{}変数にアクセスするには、必ず次を追加してください。
#{}
.pledged(style="width:#{totalVotes - votesRemaining)*100}%")