- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已经花了好几个小时解决这个问题,但似乎找不到问题所在。我创建了 3 个 div,并使用 bootstrap 对它们进行定位和调整大小。当我单击提交时,我希望每个 div 中的文本区域消失,这确实发生了。然而,在textarea消失后,每个div都比上面的div宽了20px。我似乎无法找到这是从哪里来的。请给我一些想法。
HTML 代码
<div class="container">
<div class="row">
<div class="col-xs-12 ">
<div class="panel panel-default">
<div class="panel-heading">Dashboard</div>
<div class="row">
<div id = "container-panels">
<div class="row">
<div class="l-board col-xs-8 col-xs-offset-2">
<h1 class="l-board-title"><b>Learning</b></h1>
@if(\Auth::user()->education()->count() == 0)
<form class="form-horizontal" role="form" method="POST"
action="{{ route('saveEducation') }}">
{{ csrf_field() }}
<div class="form-group{{ $errors->has('content') ? ' has-error' : '' }}">
<p class="l-board-content"><textarea required id="content"
class="form-control my-editor"
name="content"
placeholder="Please describe education goal..."
rows="5">{{ old('content') }}</textarea>
</p>
@if ($errors->has('content'))
<span class="help-block"><strong>{{ $errors->first('content') }}</strong></span>
@endif
</div>
<div class="form-group">
<div class="col-md-8 col-md-offset-9">
<button type="submit" class="btn btn-default">
Submit
</button>
<button type="button"
class="btn btn-default"
style="background-color: transparent; border-color: #bac2bd">
<a href="/home" style="color: #58595b">
Cancel
</a>
</button>
</div>
</div>
</form>
</div>
@else
{{\Auth::user()->education()->get()[0]['content']}}
@endif
</div>
<div class="row">
<div class="rel-board col-xs-8 col-xs-offset-2">
<h1 class="rel-board-title"><b>Relationship</b></h1>
@if(\Auth::user()->relationship()->count() == 0)
<form class="form-horizontal" role="form" method="POST"
action="{{ route('saveRelationship') }}">
{{ csrf_field() }}
<div class="form-group{{ $errors->has('relationshipContent') ? ' has-error' : '' }}">
<p class="l-board-content"><textarea required id="relationshipContent"
class="form-control my-editor"
name="relationshipContent"
placeholder="Please describe relationship goal..."
rows="5">{{ old('relationshipContent') }}</textarea>
</p>
@if ($errors->has('relationshipContent'))
<span class="help-block"><strong>{{ $errors->first('relationshipContent') }}</strong></span>
@endif
</div>
<div class="form-group">
<div class="col-md-8 col-md-offset-9">
<button type="submit" class="btn btn-default">
Submit
</button>
<button type="button"
class="btn btn-default"
style="background-color: transparent; border-color: #bac2bd">
<a href="/home" style="color: #58595b">
Cancel
</a>
</button>
</div>
</div>
</form>
</div>
@else
{{\Auth::user()->relationship()->get()[0]['relationshipContent']}}
@endif
</div>
<div class="row">
<div class="exp-board col-xs-8 col-xs-offset-2">
<h1 class="exp-board-title"><b>On-the-job Experience</b></h1>
@if(\Auth::user()->experience()->count() == 0)
<form class="form-horizontal" role="form" method="POST"
action="{{ route('saveExperience') }}">
{{ csrf_field() }}
<div class="form-group{{ $errors->has('experienceContent') ? ' has-error' : '' }}">
<p class="l-board-content"><textarea required id="experienceContent"
class="form-control my-editor"
name="experienceContent"
placeholder="Please describe experience goal..."
rows="5">{{ old('experienceContent') }}</textarea>
</p>
@if ($errors->has('experienceContent'))
<span class="help-block"><strong>{{ $errors->first('experienceContent') }}</strong></span>
@endif
</div>
<div class="form-group">
<div class="col-md-8 col-md-offset-9">
<button type="submit" class="btn btn-default">
Submit
</button>
<button type="button"
class="btn btn-default"
style="background-color: transparent; border-color: #bac2bd">
<a href="/home" style="color: #58595b">
Cancel
</a>
</button>
</div>
</div>
</form>
</div>
@else
{{\Auth::user()->experience()->get()[0]['experienceContent']}}
@endif
</div>
<button class="submit-btn" ><a href="/plan">Design Your Plan<i class="arrow-right"></i></a>
</button>
</div>
</div>
</div>
<div class="panel-body">
@if (session('status'))
<div class="alert alert-success">
{{ session('status') }}
</div>
@endif
</div>
</div>
</div>
</div>
</div>
CSS 代码
#container-panels{
min-height: 935px;
}
#container-panels p{
margin: 0 11px;
}
.l-board:before {
content: '';
width: 30%;
height: 4px;
background: #a5d5a7;
position: absolute;
top: -4px;
left: 0px;
}
.l-board {
background-color: #F5FCF4;
height: 250px;
margin-top: 32px;
margin-left: 5%;
margin-bottom: 32px;
box-shadow: 0 0 10px #DDDDDD;
}
.l-board-title {
font-size: 14px;
color: #a5d5a7;
}
.rel-board:before {
content: '';
width: 80%;
height: 4px;
background: #ea7987;
position: absolute;
top: -4px;
left: 0px;
}
.rel-board {
background-color: #FAEDED;
height: 250px;
margin-left: 5%;
margin-bottom: 32px;
box-shadow: 0 0 10px #DDDDDD;
}
.rel-board-title{
font-size: 14px;
color:#ea7987;
}
.exp-board:before {
content: '';
width: 50%;
height: 4px;
background: #4a90e2;
position: absolute;
top: -4px;
left: 0px;
}
.exp-board {
background-color: #F0F5FA;
height: 250px;
margin-left: 5%;
margin-bottom: 32px;
box-shadow: 0 0 10px #DDDDDD;
}
.exp-board-title{
font-size: 14px;
color:#4a90e2;
}
.panel input {
width: 100%;
height: 125px;
margin-top: 10px;
}
.submit-btn {
position: absolute;
top: 905px;
left: 80%;
border-style: solid;
border-width: 1px;
border-color: #7f7f7f;
background-color: #ffffff;
color: #7f7f7f;
padding: 15px 32px;
padding-left: 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1vw;
cursor: pointer;
z-index: 1;
}
.submit-btn a{
color: #7f7f7f;
text-decoration: none;
}
.submit-btn:hover{
transition-duration: 1s;
background-color: #F4F4F4;
}
.submit-btn a:hover{
color: #7f7f7f;
text-decoration: none;
}
.submit-btn i {
position: absolute;
border: solid #999999;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 8px;
}
i {
position: absolute;
border: solid #999999;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 8px;
}
.arrow-right {
padding: 0.6vw !important;
border-width: 0 0.15vw 0.15vw 0 !important;
margin-top:1px;
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
}
最佳答案
改变这些:
</form>
</div>
@else
{{\Auth::user()->education()->get()[0]['content']}}
@endif
</div>
收件人:
</form>
@else
<p class="l-board-content">
{{\Auth::user()->education()->get()[0]['content']}}
</p>
@endif
</div>
</div>
关于html - 删除 textarea 和 div 现在大小不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52784056/
我似乎无法让它发挥作用。我已经尝试过在线样本,但没有一个正是我需要的。基本上我希望能够显示从给定日期过去的天数。我下面的示例是 HTML 和 PHP 的组合,出于某些原因我不得不这样做。 Date
Closed. This question needs to be more focused。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅关注editing this post的一个问题。
在此处搜索“线程关联”的答案,我发现人们对此很感兴趣,但没有什么理由可以节省可能获得稳定的 QueryPerformanceTimer 结果。 假设一个现代操作系统和一个现代 2-4 插槽工作站/服务
我有一个称为main-app的聚合物元素:
我有一个表,我想在每个插入时间记录每个订单的时间戳。但是,我得到的时间戳值为零。 这是我的架构: CREATE TABLE IF NOT EXISTS orders( orde
我正在使用 MongoDB Atlas 来托管数据库并使用这个无服务器函数查询数据: import { NextApiRequest, NextApiResponse } from "next"; /
苹果卸下了转义键,并用OLED触摸条替换了它。这对emacs用户具有影响,特别是对于具有数十年肌肉内存力才能克服此变化的UNIX/emacs用户而言。幸运的是,触摸栏逃生键似乎总是在您需要的时候出现,
抱歉,我对 DbGrids 还很陌生。 我是否应该使用查询的字段编辑器并以某种方式添加一个捕获 TIMEDIFF 的新字段,然后将其添加为我的 DbGrid 中的列? 或者我可以/应该跳过字段编辑器并
正如一本相当古老的书XUnit Patterns所写,NUnit 2.0不会为每个测试创建新的测试夹具,因此,如果测试正在操纵夹具的某种状态,则该夹具会被共享并且可能导致各种不良副作用。 还是一样吗?
我知道自2016年4月以来,Youtube API的默认配额限制为1M。 如果要增加它,我们需要向Google 发送请求。 我想知道我们可以要求的配额限制的最大值是多少? 最佳答案 根据Google开
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
{ "size": 0, "query": { "range": { "LogTime": { "gte": "now-1d",
当我尝试从终端编译这个简单的代码时: #include int main(void) { printf("%f\n",sqrt(10)); return 0; } 使用 gcc mai
我正在尝试筛选抓取一个 html 页面,以便我可以从中提取所需的有值(value)的数据并将其放入文本文件中。到目前为止,一切进展顺利,直到我在 html 页面中遇到了这个: In inventor
这是我的 结果 MySQL 表的示例: 我想将特定用户的所有日期向前移动相同的时间间隔,以便该用户的最高日期是当前时间戳。我知道如何获取以天为单位的间隔: /* result is 823 */ SE
我有一个函数需要从主视图中的几个不同位置调用。我们称它为 updateFunction。 我这样声明: - (void)updateFunction { //updates some vari
我正在尝试找出如何以某种方式嵌套回调。 var alpha = function(callback){ var x = 5; if(x > 2){ callback()
为什么我收到RangeError:超出最大调用堆栈错误?我正在尝试解析文本以找到数学并解决它。它一直有效,直到我开始实现括号'。我试图找出错误,但就是无法弄清楚。 我的代码: var alg = {
我记得几年前,没有使用 SSL 的原因之一是它占用了大量资源,因此影响了应用程序的性能。 如今,以当前的技术,这仍然是一个需要牢记的点吗? 这个问题的出现是因为一位同事担心使用 SSL 会影响他的应用
我正在将我的数据库从 sqlserver 迁移到 mysql当我在 sqlserver 中使用 getDate() 函数时,mysql 中的替换是 Now()但是 Now() 没有返回 getDate
我是一名优秀的程序员,十分优秀!