我正在尝试将导航栏中的链接均匀分隔到居中徽标的左侧和右侧,similar to this (link).
Here is the live website navbar I'd like to ape.
我尝试了很多不同的东西,使用flexboxes就像我能得到它一样接近。但它仍然不完美,并没有很好地缩小。我的代码完全是骷髅头和管道绑在一起,但这就是它的样子:
.flex-header {
display: flex;
height: 100px;
align-items: center;
justify-content: space-around;
width: 100%;
}
.flex-item li {
list-style: none;
display: inline-block;
padding-top: 5px;
text-transform: uppercase;
font-weight: 700;
vertical-align: middle;
text-align: center;
font-size: 16px;
line-height: 1.2em;
padding: 5px 40px 0 40px;
}
.flex-left { order: 1; }
.flex-right { order: 3; }
.flex-logo { order: 2; }
填充不是理想的,但这就是我必须一起破解它的方法。它也没有在巨大的分辨率中保持 - 间距变得翘曲。理想情况下,我想为每个列表项设置一个百分比宽度,但我无法让它看起来正确。
有人有任何建议吗?
答案 0 :(得分:0)
将每个navBar部分(包括图像)包含在其自己的div中。
TargetPath
然后,我们只需定位它们并设置它们的宽度,使它们都相等。
using IWshRuntimeLibrary;
object shDesktop = (object)"Desktop";
WshShell shell = new WshShell();
string shortcutAddress = (string)shell.SpecialFolders.Item(ref shDesktop) + homeDirectoryPath;
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(shortcutAddress);
shortcut.Description = "New shortcut for a Notepad";
shortcut.Hotkey = "Ctrl+Shift+N";
shortcut.TargetPath = Environment.GetFolderPath(Environment.SpecialFolders.System) + homeDirectoryPath;
shortcut.Save();