3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Pleasanter Tips:印刷する際にヘッダとフッターを消す

Last updated at Posted at 2023-05-12

Pleasanterには印刷に関する処理が有りません。仕事では一覧や内容を出力する際にブラウザの印刷機能を使用しますが、ヘッダ部やフッタ部が邪魔になる場合が有ります。
その際の対応方をを共有します。

設定する場所

[テーブル管理]の[スタイル]に下記のコードを作成してください。
出力先は[全て]で良いです。

作成するコード

@media print{
  div#MainCommandsContainer{display:none}
  footer#Footer{display:none}
  header#Header{display:none}
}

May The Pleasanter Be With You.

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?