Подход, который вы использовали, не будет работать на всех разрешениях экрана ... лучше использовать vertical-align:middle
;
Я продублировал 2 строки без добавленного вами ‌
. .. Они окрашены в зеленый цвет, и здесь я также использовал свойство vertical-align
;
рабочий фрагмент ниже:
.table thead td {
background-color: lightgreen;
vertical-align: middle;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h4>Plan</h4>
</div>
<table class="table">
<thead>
<tr>
<th>Set project strategy, tactics and timing</th>
<th><a href="" target="_blank">Project Brief</a></th>
</tr>
<tr>
<th>Choose the right channel for your communication</th>
<th><a href="" target="_blank">Channel Guidelines</a> ‌ ‌ ‌ ‌ ‌ ‌‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌‌ ‌ ‌ ‌ ‌ ‌ </th>
</tr>
<tr>
<th>Choose the right channel for your communication</th>
<td><a href="" target="_blank">Channel Guidelines</a>
</td>
</tr>
<tr>
<th>Add your project to the calendar<br><br></th>
<th><a href="" target="_blank">Communications Calendar Intake</a> </th>
</tr>
<tr>
<th>Submit outbound call/text programs </th>
<th><a href="" target="_blank">website to test</a></th>
</tr>
<tr>
<th>Review vendor guidelines and share communication requirements with vendors</th>
<th style="margin-left: 100px;"><a href="" target="_blank">Vendor Guidelines</a> ‌ ‌ ‌ ‌ ‌ ‌‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌‌ ‌ ‌ ‌ ‌ ‌</th>
</tr>
<tr>
<th>Review vendor guidelines and share communication requirements with vendors</th>
<td style="margin-left: 100px;"><a href="" target="_blank">Vendor Guidelines</a>
</td>
</tr>
</thead>
</table>
</div>
</div>