سلام من می خوام 3 متن که داخل هر کدام از باکسهام نمایش داده می شه اگه بزرگتر هم از باکس بود طول و عرض باکس رو تغییر نده.
<table border="1">
<tbody>
<tr>
<td height:"10%" width="10%">
<div class="textwidget">
<h3><a href="<?php echo get_permalink(101); ?>"><?php the_title(); ?>, <?php the_time('F j, Y'); ?><br /></a>
<?php
$post_id = 101;
$queried_post = get_post($post_id);
echo $queried_post->post_content;
echo get_the_post_thumbnail($post_id);
?>
</h3>
</div>
</td>
<td height:"10%" width="10%">
<div class="textwidget">
<h3><a href="<?php echo get_permalink(99); ?>"><?php the_title(); ?>, <?php the_time('F j, Y'); ?><br /></a>
<?php
$post_id = 99;
$queried_post = get_post($post_id);
echo $queried_post->post_content;
echo get_the_post_thumbnail($post_id);
?>
</h3>
</div>
</td>
<td height:"10%" width="10%">
<div class="textwidget">
<h3><a href="<?php echo get_permalink(93); ?>"><?php the_title(); ?>, <?php the_time('F j, Y'); ?><br /></a>
<?php
$post_id = 97;
$queried_post = get_post($post_id);
echo $queried_post->post_content;
echo get_the_post_thumbnail($post_id);
?>
</h3>
</div>
</td>
</tr>
</tbody>
</table>