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.
Semantic-UI で固定幅のコンテンツを作成する「正しい」方法はありますか?
特定のサイズのままにしておく必要があるページにキャンバス要素がありますが、グリッドシステムを使用すると、どのような設定を試みても常に拡大縮小するようです。
私の理解が正しければ、それはセマンティック UI グリッドでは不可能だと思います。ただし、min-width と min-height を使用すると役立つ場合があります。
CSS
.fixed-width { width: 300px; height:300px; min-width: 300px; min-height:200px; border:1px solid #000000; }
このjsfiddleスニペットを見てください