如何为此表提供5px的边框半径? css在php ajax文件的代码中。
<table border=';
$form_questions_list.='2px align=';
$form_questions_list.='center>
我从未见过以这种方式使用CSS。你能告诉我如何调整这个吗?
以下是完整的功能代码:
// AJAX function to load updated survey question List
add_action('wp_ajax_nopriv_show_updated_question_list', 'show_updated_question_list');
add_action('wp_ajax_show_updated_question_list', 'show_updated_question_list');
function show_updated_question_list(){
global $wpdb;
$available_questions = $wpdb->get_results("SELECT question_ID, question_text FROM dm_form_questions");
$form_questions_list = '';
$form_questions_list.='<h1>Add your review questions here:</h1>
<table border=';
$form_questions_list.='2px align=';
$form_questions_list.='center>
<th style="background-color: #333; color: #FFF; font-size: 15px">Question Text</th>
<th style="background-color: #AFA; font-size: 15px">Edit</th>
<th style="background-color: #FAA; font-size: 15px">Delete</th>';
foreach ($available_questions as $key) {
$form_questions_list.='<tr><td style="text-align: left; width: 500px; padding: 0 5px;">'.$key->question_text.'</td><td><input type=';
$form_questions_list.= 'button value=';
$form_questions_list.='Edit id=';
$form_questions_list.=$key->question_ID;
$form_questions_list.=' onclick=';
$form_questions_list.='edit_question_text(';
$form_questions_list.=$key->question_ID;
$form_questions_list.=') ></td>';
$form_questions_list.='<td><input type=';
$form_questions_list.= 'button value=';
$form_questions_list.='Delete id=';
$form_questions_list.=$key->question_ID;
$form_questions_list.=' onclick=';
$form_questions_list.='delete_question_text(';
$form_questions_list.=$key->question_ID;
$form_questions_list.=')></td>';
$form_questions_list.='</tr>';
}
$form_questions_list.='</table>';
echo $form_questions_list;
die();
}
谢谢!
答案 0 :(得分:0)
尝试在表格中添加id
。
例如:
echo "<table id=\"info_table\" border=2>";
然后将此CSS代码添加到HTML文档的头部,或使用CSS文件在外部使用它。
代码:
<style type="text/css">
#info_table {
Code: whatever;
}
</style>
这允许您使用CSS结合PHP来为表格设置样式。
请告诉我这是否有帮助!
答案 1 :(得分:0)
我没有看到此代码中使用任何CSS。它只是表元素属性:您只需要在表格中添加一个样式。
<table style='border-radius: 5px;' border=';
$form_questions_list.='2px align=';
$form_questions_list.='center>