简体   繁体   English

尝试在此列中加粗

[英]Trying to bold within this column

I am trying to make the title in this column bold, can i tried specifying the style as bold and it just disappeared, any way i can do this within this column. 我正在尝试使此列中的标题变为粗体,我可以尝试将样式指定为粗体并且它刚刚消失吗,无论如何我都可以在此列中做到这一点。

[column parallax_bg="disabled" parallax_bg_inertia="-0.2" 
extended="false"extended_padding="true" background_color=""
background_image="" background_repeat="" background_position="
background_size="auto" background_attachment="" hide_bg_lowres="false" 
background_video="" vertical_padding_top="0" vertical_padding_bottom="0" 
more_link="" more_text="" left_border="transparent" class="" id="" title="We 
are based in Oakville, Ontario" title_type="single" animation="none" 
width="1/1" last="true"]

If you meant making the text bold in the column you can try this: 如果您要在列中将文本设为粗体,可以尝试以下操作:

#column {
font-weight:bold;
}

where #column is the id of the column specified in your html. 其中#column是html中指定的列的ID。

In html around the worlds you want bold you can but 在世界各地的html中,您可以粗体显示,但是

<b>.......</b>

the world between those tags will be bold. 这些标签之间的世界将是大胆的。

You can try to bold your text. 您可以尝试将文本加粗。

<strong>We are based in Oakville, Ontario</strong>

Here is working fiddle: http://jsfiddle.net/xjeqmsbr/ 这是工作提琴: http : //jsfiddle.net/xjeqmsbr/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM