【无标题】

dialog {
  position: absolute;
  left: 0; right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin: auto;
  border: solid;
  padding: 1em;
  background: white;
  color: black;
  display: block;
}

dialog:not([open]) {
  display: none;
}

dialog + .backdrop {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.1);
}

._dialog_overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
}

dialog.fixed {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
}
table, th, td
{
    border: 1px solid black;
}
span
{
  font-size: large;
  font-weight: bold;
}
button
{
 color: blue;
}
.editPage {
  width: 500px;
	height: 200px;
	/* border: 1px solid black;
	border-radius: 3px;
	box-shadow: 0px 0px 7px #cdcdcd; */
	position: absolute;
	top: 50%;
	left:50%;
  /* margin-left: '100px'; */
	transform: translate(-50%,-50%);
}
上一篇:23组件之间的通信练习


下一篇:Binder系列9—如何使用AIDL