リンクが上書きされている問題が重なって、スクリーンショットは次のとおりです。リンクはお互いが
私が使用したCSSは次のとおりです。
いずれかがこれらのリンクのHTMLを見たい場合は.moderation_buttons a:link, .moderation_buttons a:active, .moderation_buttons a:visited{
padding: 1px 9px;
background: #d6d6d6;
color: #000;
margin: 3px;
text-decoration: none;}
、ここにHTMLがあります:
// Working on the Moderation Buttons
$view_profile = '<a href="index.php?action=profile_student&sid='.$sid.'">VIEW PROFILE</a>';
$edit = '<a href="index.php?action=edit_student&sid='.$sid.'">EDIT</a>';
$delete = '<a href="index.php?action=delete_student&sid='.$sid.'">DELETE</a>';
$cancel = '<a href="index.php?action=cancel_student&sid='.$sid.'">CANCELATION</a>';
$admission_form = '<a href="index.php?action=cancel_student&sid='.$sid.'">ADMISSION FORM</a>';
$promote = '<a href="index.php?action=promote_student&sid='.$sid.'">PROMOTE</a>';
$fee = '<a href="index.php?action=fee_print_student&sid='.$sid.'">FEEs</a>';
$moderation_buttons = '<div class="moderation_buttons">'.$view_profile.$edit.$delete.$cancel.$admission_form.$promote.$fee.'</div>';
リンクを適切に調整してお互いに上書きしないように調整するにはどうすればよいですか?
おかげ
「オーバーラップ」を意味すると思います。 –
はい、あなたは正しいです、私はオーバーラップを意味する –