• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

scale html5 output from FrameMaker 2019?

Community Expert ,
Feb 15, 2019 Feb 15, 2019

Copy link to clipboard

Copied

I publish a document to html5 from FrameMaker 2019. I would like to set a scaling factor to the output, like you can do when printing. Is it possible somehow to make a setting which scales the out to 125% for instance?


Bjørn Smalbro - FrameMaker.dk

Views

204

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 15, 2019 Feb 15, 2019

Copy link to clipboard

Copied

What's the scenario? In general, with HTML, the scale is controlled by the client device that renders it.

width=100%; is going to be completely different on a 3-inch cell phone screen and a 32-inch desktop window.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Feb 15, 2019 Feb 15, 2019

Copy link to clipboard

Copied

LATEST

You could just scale everything to 125% by putting this into your CSS:

html {

    zoom: 1.25;

}

But why would one want to do this? If you need to have things "bigger", why do you not just define them bigger in the CSS in the first place?

Besides that, it does not prevent users from zooming in or out, and some browsers or future versions of them might ignore that anyway.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines