【发布时间】:2020-09-24 13:30:17
【问题描述】:
我是 Svelte 的新手,我非常喜欢它,在为我的项目设计顶部导航栏时,由于 Svelte 的 JS DOM 样式方法,我无法达到预期的结果。如果你能指导我,那就太好了。
标记如下
<div class="top-nav">
<div class="width-restriction">
<div id="hamburger-icon">
<HamburgerIcon /> <!-- Imported component, essentially an icon, doesn't affect styling; needs to be at the extreme left -->
</div>
<h1 class="head" id="logo">VKYD</h1> <!-- Logo; needs to be centered -->
<div id="shopping-cart-icon">
<ShoppingCartIcon /> <!-- Imported component, essentially an icon, doesn't affect styling; needs to be at the extreme right -->
</div>
</div>
</div>
【问题讨论】:
-
到目前为止,您对 css 有什么尝试?你应该发布那个。
标签: javascript html css svelte