It is not possible to grow beyond the margins

Today, when the screen is low and wide, there is a dead space that cannot be entered.
How do you overcome it?

This seems to be an issue with your specific notetype.
I just checked on the most recent Anki version and there is no default width constraint for card content:

Look for CSS targeting #qa, .card or body.

4 Likes

HTMLָָָָ

<div class = all>
    <div class = div1></div>
    <div class = div2>{{img}}</div>
<div/>

css

.all {
  display: grid;
  grid-template-columns: 1fr 1fr;
 width: 100%; 
}
.div1 {
  background-color: gray; 
height: 100vh;
}
.div2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: red; 
}
.div2 img {
  max-height: 100vh;
  max-width: 100vh;
}

@kleinerpirat
You were right as always.
It was a plugin issue

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.