gpt4 book ai didi

html - 如何在选择选项的 HTML 标签中应用字体系列

转载 作者:行者123 更新时间:2023-12-04 18:05:47 25 4
gpt4 key购买 nike

我在 <select><option> 申请字体系列标记,但它不起作用任何选项家伙

我的代码:

<select name="t1_font" class="form-control" >
<option style="font-family: Font-familly path');">Font-family Name</option>
</select>

我正在使用的真实代码:
      <div class="col-sm-4">
<?php $fonts=glob(FONT_URL.'*'); //print_r($fonts); ?>
<?php if (!empty($fonts)): $i=0;?>
<?php foreach ($fonts as $font):
$font_arr= explode('/',$font); $font_string =substr($font_arr[3], 0, -4);?>
<style>
@font-face {
font-family: <?php echo $font_string ?>;
src: url('<?php echo $font ?>');
}
</style>
<?php $i++;
endforeach ?>
<?php endif ?>
<b>Family</b><br>
<select name="t1_font" class="form-control" >
<?php if (!empty($fonts)): ?>
<?php foreach ($fonts as $font): $font_arr= explode('/',$font); $font_string =substr($font_arr[3], 0, -4); ?>
<option style="font-family: <?php echo $font_string ?>;src: url('<?php echo base_url($font) ?>');" value="<?php echo $font_arr[3] ?>" <?php if(!empty($default_data_param->text1))
{if($font_arr[3]== $default_data_param->text1_font_file){ echo'selected';}}?> ><?php echo ucfirst($font_string) ?></option>
<?php endforeach ?>
<?php endif ?>
</select>
</div>

最佳答案

<select>

<optgroup style="font-family:arial">
<option>Arial</option>
</optgroup>

<optgroup style="font-family:verdana">
<option> veranda </option>
</optgroup>

<optgroup style="font-family:other">
<option>other</option>
</optgroup>

</selecct>

关于html - 如何在选择选项的 HTML 标签中应用字体系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26943396/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com