gpt4 book ai didi

css - Bootstrap 输入字段旋转

转载 作者:太空宇宙 更新时间:2023-11-04 08:39:37 25 4
gpt4 key购买 nike

是否可以以及如何将输入字段旋转 90 度?我无法在互联网上找到任何关于此的信息。也许使用了错误的关键字?

旧情

通缉情况

                echo'<table class="table table-striped table-fixed">
<thead>
<tr>
<th class="col-md-5">
<small>Firma</small>
<a href="?zoek='.$zoek.'&sort_name=klantnaam&sort=asc" title="'.$lang['sorteer_asc'].'"><span class="glyphicon glyphicon-sort-by-alphabet glyph_sorting" aria-hidden="true"></span></a>
<a href="?zoek='.$zoek.'&sort_name=klantnaam&sort=desc" title="'.$lang['sorteer_asc'].'"><span class="glyphicon glyphicon-sort-by-alphabet-alt glyph_sorting" aria-hidden="true"></span></a>
</th>
<th class="col-md-2"><small>Plaats</small></th>
<th class="col-md-2"><small>Telefoon</small></th>
<th class="col-md-3">
<form action="" method="post">
<div class="form-group col-xs-8">
<input type="text" class="form-control input-sm" placeholder="Zoeken op" name="zoek_nieuw" value="'.$zoek.'">
</div>
<button type="submit" class="btn btn-default btn-sm"><span class="glyphicon glyphicon-search" aria-hidden="true"></span></button>
<button type="button" class="btn btn-sm"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
</form>
</th>
</tr>
</thead>
<tbody>';

while ($row = mysqli_fetch_array($res)) { $i++; echo'
<tr>
<td><small>'.$row['klantnaam'].'</small></td>
<td><small>'.$row['plaats']; if($row['land_code'] != 'nl') { echo ' <span class="flag"><img src="images/flags/'.$row['land_code'].'.gif"></span>'; } echo '</small></td>
<td><small>'.$row['tel'].'</small></td>
<td align="right">'; if(!empty($row['www'])) { echo '<a href="'.$row['www'].'" target="_blank"><span class="glyphicon glyphicon-home" aria-hidden="true"></span> </a>'; } else { echo '<span class="glyphicon glyphicon-none" aria-hidden="true"></span> '; }
echo '<a href="http://maps.google.com/?q='.$row['klantnaam'].'+'.$row['plaats'].'" target="_blank"><span class="glyphicon glyphicon-map-marker" aria-hidden="true"></span></a>
<a href="#"><span class="glyphicon glyphicon-search" aria-hidden="true"></span></a>
<a href="#"><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span></a>
<a href="#"><span class="glyphicon glyphicon-stats" aria-hidden="true" data-toggle="modal" data-target=".bd-example-modal-lg'.$i.'"></span></a>
</td>
</tr>';
}

最佳答案

您可以使用 CSS 旋转字段:

input[type="text"]{
transform: rotate(90deg);
position:absolute;
top: 80px;
border: thin solid #000;
}
<input type="text" placeholder="test">

关于css - Bootstrap 输入字段旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44225701/

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