- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有以下代码:JSBin .
我希望两个 flex-boxes 最初有灰色作为背景,一旦我们点击一个框,它的整个背景变成白色。 .flex-box .col textarea:focus
按预期工作,而 .flex-box .col:focus
不起作用:文本的背景颜色(例如,html
, css
) 总是灰色的。
谁知道这是怎么回事?
.flex-box {
display: flex;
width: 100%;
margin: 0;
height: 300px;
}
.flex-box .col {
border: 1px solid green;
flex: 1;
overflow-y: auto;
overflow-x: hide;
background: #F7F7F7;
}
.flex-box .col textarea {
position: relative;
width: 100%;
height: 100%;
resize: none;
border: 0;
font-family: monospace;
background: #F7F7F7;
}
.flex-box .col:focus {
background: white;
}
.flex-box .col textarea:focus {
outline: none;
background: white;
}
<div class="flex-box">
<div class="col" id="html-panel">
<h2>html</h2>
<textarea name="html"></textarea>
</div>
<div class="col" id="css-panel">
<h2>css</h2>
<textarea name="css"></textarea>
</div>
</div>
编辑 1:
实际上,一旦我们点击一个框的文本区域,我希望它的标题背景也系统地变成白色。使用 JavaScript 设置事件监听器让我很烦(因为我已经有几个事件监听器了)。难道没有办法仅通过 CSS 来实现这一点吗?
最佳答案
这是因为 textarea
得到的是 :focus
而不是 div
。单独使用 CSS 实现结果的一种方法是为背景添加一个额外的 div
并在 textarea
获得焦点时使用兄弟选择器。
.flex-box {
display: flex;
width: 100%;
margin: 0;
height: 300px;
}
.flex-box .col {
border: 1px solid green;
flex: 1;
overflow-y: auto;
overflow-x: hide;
background: #F7F7F7;
Position: relative;
}
.flex-box .col textarea {
position: relative;
width: 100%;
height: 100%;
resize: none;
border: 0;
font-family: monospace;
background: #F7F7F7;
Z-index: 1;
}
.flex-box .col label {
display: block;
font-size: 2em;
font-weight: bold;
padding: 10px;
position: relative;
Z-index: 1;
}
.flex-box .col:focus {
background: white;
}
.flex-box .col textarea:focus {
outline: none;
background: white;
}
.flex-box .col .background {
Position: absolute;
Top: 0;
Left: 0;
Right: 0;
Bottom: 0;
Height: 100%;
Width: 100%;
Z-index: 0;
}
.flex-box .col textarea:focus ~ .background {
background: white;
}
<div class="flex-box">
<div class="col" id="html-panel">
<label for="html">html</label>
<textarea id="html" name="html"></textarea>
<div class="background"></div>
</div>
<div class="col" id="css-panel">
<label for="css">css</label>
<textarea id="css" name="css"></textarea>
<div class="background"></div>
</div>
</div>
关于html - 焦点不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41318976/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!