我想在我的基于bootstrap的导航栏中将徽标和品牌名称组合为文本。问题是我无法弄清楚为什么有换行符和文字与徽标不在同一行。有人可以帮忙吗?
<%= link_to image_tag("brand_logo.png") + " Brandname", root_path, class: "navbar-brand" %>
我尝试添加“display:inline;”在我的CSS文件中,但这没有帮助。请参阅浏览器的屏幕截图 inspect
谢谢。
答案 0 :(得分:0)
您需要将属性image_tag
提供给<%= link_to root_path, class: 'navbar-brand' do %>
<%= image_tag('brand_logo.png', style: 'display:inline') %>
<%= 'Brandname' %>
<% end %>
本身。
pg = subprocess.Popen("cd c:/mydirectory & ./runExecutable.exe --help", stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
buff,buffErr = pg.communicate()