最近有个需求是,页面上显示个按钮,点击按钮的时候给用户发邮件,但是打印该页面的时候,要忽略按钮
查了下,确实有这样的css属性,打印的时候忽略。
html部分
<input name="_csrf" type="hidden" id="_csrf" value="<?=Yii::$app->request->csrfToken ?>">
<button class="btn btn-primary pull-right" id="send_to_customer" style="width:240px; margin:0 auto;
background-color:#337ab7;border-color:#2e6da4; font-size:28px; border-radius:10px;}">
Send to Customer
</div>
style 部分
<style>
@media print {
#button_send{
display:none;
}
}
</style>