停止重叠第三个div

时间:2017-08-03 13:25:16

标签: html css

我是css的新手,我确实在下面写了代码:

Command ="{Binding BindingContext.EditAddressCommand, Source={x:Reference lstAddress}" 
Traceback (most recent call last):
  File "/Users/solari/Codes/EmotionalTwitter/vader.py", line 22, in 
<module>
    analyzer = SentimentIntensityAnalyzer()
  File "/usr/local/lib/python3.6/site-
packages/vaderSentiment/vaderSentiment.py", line 199, in __init__
    self.lexicon_full_filepath = f.read()
  File "/usr/local/Cellar/python3/3.6.2/Frameworks/Python.framework/Versions/3.6/l
ib/python3.6/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 6573: ordinal not in range(128)
[Finished in 0.5s with exit code 1]

问题是row1重叠第一张图片,但我只想注册按钮重叠图像,我确实尝试“清除:两者;”在row1 css但没有发生任何事情。我该怎么办 ?

1 个答案:

答案 0 :(得分:0)

如果我理解正确,问题在于使用position:absolute。 简单地说,如果您在页面的一部分上使用该部分,则该部分与页面上的元素不一致。它没有发生。所以你可以给它其他类型的显示。

.back {
  width: 100%;
  height: auto;
  position: relative;
}

如果您想将按钮放在图片上,则应将position: absolute添加到.topcenter课程中。您可以使用top,right,bottom,left移动它。

您也可以尝试按照文件的顺序进行处理。

相关问题