Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
193 views
in Technique[技术] by (71.8m points)

css - Button cropping its contents in Webkit

I would like to make a <button> whose contents extend beyond its border box.

This MWE works as intended in all browsers I have access to, except Epiphany (Webkit):

button {
  margin: 0;
  padding: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  border: 1px dashed black;
  background: inherit;
  overflow: visible;
}

button::after {
  content: 'abc';
  margin-right: -1em;
}

(JSBin)

Firefox:

Chrome:

Samsung Internet:

MS Edge:

Hell, it even almost works in IE11 (even though it has no concept of appearance):

Only Epiphany (so presumably also Safari) displays this:

Is there anything I could do? I went through the displayed user agent stylesheet and no property seems to imply it should render cropped.

question from:https://stackoverflow.com/questions/65906758/button-cropping-its-contents-in-webkit

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...